kittycad.api.users.get_user_self

Functions

asyncio(*, client)

Get the user information for the authenticated user.

asyncio_detailed(*, client)

rtype:

Response[Union[User, Error, None]]

sync(*, client)

Get the user information for the authenticated user.

sync_detailed(*, client)

rtype:

Response[Union[User, Error, None]]

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

Response[Union[User, Error, None]]

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

Dict[str, Any]

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

Union[User, Error, None]

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

Get the user information for the authenticated user. Alternatively, you can also use the /users/me endpoint.

Return type:

Union[User, Error, None]

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

Response[Union[User, Error, None]]

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

Get the user information for the authenticated user. Alternatively, you can also use the /users/me endpoint.

Return type:

Union[User, Error, None]

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

Response[Union[User, Error, None]]