benchling_api_client.api.teams.get_team module

async asyncio(*, client: Client, team_id: str) Optional[Union[Team, NotFoundError]]

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

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

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

sync_detailed(*, client: Client, team_id: str) Response[Union[Team, NotFoundError]]