benchling_api_client.api.users.get_user module

async asyncio(*, client: Client, user_id: str) Optional[Union[User, NotFoundError]]

Returns a user by ID if the caller has permission to view. The following roles have view permission: - tenant admins - members of any of the user’s organizations

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

Returns a user by ID if the caller has permission to view. The following roles have view permission: - tenant admins - members of any of the user’s organizations

sync_detailed(*, client: Client, user_id: str) Response[Union[User, NotFoundError]]