kittycad.api.api_calls.list_api_calls_for_user

Functions

asyncio(id, sort_by, *, client[, limit, ...])

This endpoint requires authentication by any KittyCAD user.

asyncio_detailed(id, sort_by, *, client[, ...])

rtype:

Response[Union[ApiCallWithPriceResultsPage, Error, None]]

sync(id, sort_by, *, client[, limit, page_token])

This endpoint requires authentication by any KittyCAD user.

sync_detailed(id, sort_by, *, client[, ...])

rtype:

Response[Union[ApiCallWithPriceResultsPage, Error, None]]

kittycad.api.api_calls.list_api_calls_for_user._build_response(*, response)[source][source]
Return type:

Response[Union[ApiCallWithPriceResultsPage, Error, None]]

kittycad.api.api_calls.list_api_calls_for_user._get_kwargs(id, sort_by, *, client, limit=None, page_token=None)[source][source]
Return type:

Dict[str, Any]

kittycad.api.api_calls.list_api_calls_for_user._parse_response(*, response)[source][source]
Return type:

Union[ApiCallWithPriceResultsPage, Error, None]

async kittycad.api.api_calls.list_api_calls_for_user.asyncio(id, sort_by, *, client, limit=None, page_token=None)[source][source]

This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user if “me” is passed as the user id. Alternatively, you can use the /user/api-calls endpoint to get the API calls for your user. If the authenticated user is a KittyCAD employee, then the API calls are returned for the user specified by the user id. The API calls are returned in order of creation, with the most recently created API calls first.

Return type:

Union[ApiCallWithPriceResultsPage, Error, None]

async kittycad.api.api_calls.list_api_calls_for_user.asyncio_detailed(id, sort_by, *, client, limit=None, page_token=None)[source][source]
Return type:

Response[Union[ApiCallWithPriceResultsPage, Error, None]]

kittycad.api.api_calls.list_api_calls_for_user.sync(id, sort_by, *, client, limit=None, page_token=None)[source][source]

This endpoint requires authentication by any KittyCAD user. It returns the API calls for the authenticated user if “me” is passed as the user id. Alternatively, you can use the /user/api-calls endpoint to get the API calls for your user. If the authenticated user is a KittyCAD employee, then the API calls are returned for the user specified by the user id. The API calls are returned in order of creation, with the most recently created API calls first.

Return type:

Union[ApiCallWithPriceResultsPage, Error, None]

kittycad.api.api_calls.list_api_calls_for_user.sync_detailed(id, sort_by, *, client, limit=None, page_token=None)[source][source]
Return type:

Response[Union[ApiCallWithPriceResultsPage, Error, None]]