[docs]defsync(*,client:Client,)->Optional[Union[UserOrgInfo,Error]]:"""This endpoint requires authentication by any Zoo user. It gets the authenticated user's org. If the user is not a member of an org, this endpoint will return a 404."""# noqa: E501returnsync_detailed(client=client,).parsed
[docs]asyncdefasyncio(*,client:Client,)->Optional[Union[UserOrgInfo,Error]]:"""This endpoint requires authentication by any Zoo user. It gets the authenticated user's org. If the user is not a member of an org, this endpoint will return a 404."""# noqa: E501return(awaitasyncio_detailed(client=client,)).parsed