kittycad.api.users.get_user

Functions

asyncio(id, *, client)

To get information about yourself, use /users/me as the endpoint.

asyncio_detailed(id, *, client)

rtype:

Response[Union[User, Error, None]]

sync(id, *, client)

To get information about yourself, use /users/me as the endpoint.

sync_detailed(id, *, client)

rtype:

Response[Union[User, Error, None]]

kittycad.api.users.get_user._build_response(*, response)[source][source]
Return type:

Response[Union[User, Error, None]]

kittycad.api.users.get_user._get_kwargs(id, *, client)[source][source]
Return type:

Dict[str, Any]

kittycad.api.users.get_user._parse_response(*, response)[source][source]
Return type:

Union[User, Error, None]

async kittycad.api.users.get_user.asyncio(id, *, client)[source][source]

To get information about yourself, use /users/me as the endpoint. By doing so you will get the user information for the authenticated user. Alternatively, to get information about the authenticated user, use /user endpoint. To get information about any KittyCAD user, you must be a KittyCAD employee.

Return type:

Union[User, Error, None]

async kittycad.api.users.get_user.asyncio_detailed(id, *, client)[source][source]
Return type:

Response[Union[User, Error, None]]

kittycad.api.users.get_user.sync(id, *, client)[source][source]

To get information about yourself, use /users/me as the endpoint. By doing so you will get the user information for the authenticated user. Alternatively, to get information about the authenticated user, use /user endpoint. To get information about any KittyCAD user, you must be a KittyCAD employee.

Return type:

Union[User, Error, None]

kittycad.api.users.get_user.sync_detailed(id, *, client)[source][source]
Return type:

Response[Union[User, Error, None]]