curl --request GET \
--url https://api.tensormesh.ai/v1/users/api-keys \
--header 'Authorization: Bearer <token>'{
"apiKeys": [
{
"id": "<string>",
"name": "<string>",
"scopes": [
"<string>"
],
"createdAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
]
}Lists API keys for a user.
curl --request GET \
--url https://api.tensormesh.ai/v1/users/api-keys \
--header 'Authorization: Bearer <token>'{
"apiKeys": [
{
"id": "<string>",
"name": "<string>",
"scopes": [
"<string>"
],
"createdAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"deletedAt": "2023-11-07T05:31:56Z"
}
]
}Bearer authentication using an access token. Format: Bearer <access_token>
The user ID that owns these keys.
Whether to include soft-deleted keys.
A successful response.
ListUserApiKeysResponse is the response containing user API keys.
API keys owned by the user.
Show child attributes