benchling_api_client.api.organizations.get_organization module

async asyncio(*, client: Client, organization_id: str) Optional[Union[Organization, NotFoundError]]

Returns an organization by ID if the caller has permission to view. The following roles have view permission: - tenant admins - members of the organization

async asyncio_detailed(*, client: Client, organization_id: str) Response[Union[Organization, NotFoundError]]
sync(*, client: Client, organization_id: str) Optional[Union[Organization, NotFoundError]]

Returns an organization by ID if the caller has permission to view. The following roles have view permission: - tenant admins - members of the organization

sync_detailed(*, client: Client, organization_id: str) Response[Union[Organization, NotFoundError]]