kittycad.api.api_tokens.delete_api_token_for_user

Functions

asyncio(token, *, client)

This endpoint requires authentication by any KittyCAD user.

asyncio_detailed(token, *, client)

rtype:

Response[Optional[Error]]

sync(token, *, client)

This endpoint requires authentication by any KittyCAD user.

sync_detailed(token, *, client)

rtype:

Response[Optional[Error]]

kittycad.api.api_tokens.delete_api_token_for_user._build_response(*, response)[source][source]
Return type:

Response[Optional[Error]]

kittycad.api.api_tokens.delete_api_token_for_user._get_kwargs(token, *, client)[source][source]
Return type:

Dict[str, Any]

kittycad.api.api_tokens.delete_api_token_for_user._parse_response(*, response)[source][source]
Return type:

Optional[Error]

async kittycad.api.api_tokens.delete_api_token_for_user.asyncio(token, *, client)[source][source]

This endpoint requires authentication by any KittyCAD user. It deletes the requested API token for the user. This endpoint does not actually delete the API token from the database. It merely marks the token as invalid. We still want to keep the token in the database for historical purposes.

Return type:

Optional[Error]

async kittycad.api.api_tokens.delete_api_token_for_user.asyncio_detailed(token, *, client)[source][source]
Return type:

Response[Optional[Error]]

kittycad.api.api_tokens.delete_api_token_for_user.sync(token, *, client)[source][source]

This endpoint requires authentication by any KittyCAD user. It deletes the requested API token for the user. This endpoint does not actually delete the API token from the database. It merely marks the token as invalid. We still want to keep the token in the database for historical purposes.

Return type:

Optional[Error]

kittycad.api.api_tokens.delete_api_token_for_user.sync_detailed(token, *, client)[source][source]
Return type:

Response[Optional[Error]]