user_get_users¶
List users
Functions
- async pydelfini.delfini_core.api.user.user_get_users.asyncio(*, client, q=Unset, name=Unset, id=Unset, account_id=Unset)[source]¶
List users
List all users that are visible to the current user.
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[UserGetUsersResponse200]
- Return type:
- async pydelfini.delfini_core.api.user.user_get_users.asyncio_detailed(*, client, q=Unset, name=Unset, id=Unset, account_id=Unset)[source]¶
List users
List all users that are visible to the current user.
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[ServerError, UserGetUsersResponse200]]
- Return type:
- pydelfini.delfini_core.api.user.user_get_users.sync(*, client, q=Unset, name=Unset, id=Unset, account_id=Unset)[source]¶
List users
List all users that are visible to the current user.
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[UserGetUsersResponse200]
- Return type:
- pydelfini.delfini_core.api.user.user_get_users.sync_detailed(*, client, q=Unset, name=Unset, id=Unset, account_id=Unset)[source]¶
List users
List all users that are visible to the current user.
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[ServerError, UserGetUsersResponse200]]
- Return type: