API KeysUpdate API key

Update API key

Update display metadata or active status. Does not rotate the key value.

curl -X PATCH "https://api.talkturo.com/api/api-keys/123e4567-e89b-12d3-a456-426614174000" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -d '{
  "name": "John Doe",
  "description": "example_string",
  "isActive": true
}'
{
  "apiKey": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "John Doe",
    "description": "example_string",
    "key_prefix": "example_string",
    "permissions": {
      "scopes": [
        "*"
      ],
      "rate_limit_per_hour": 1000
    },
    "last_used_at": "2024-12-25T10:00:00Z",
    "expires_at": "2024-12-25T10:00:00Z",
    "is_active": true,
    "created_at": "2024-12-25T10:00:00Z",
    "created_by": "123e4567-e89b-12d3-a456-426614174000"
  }
}
PATCH
/api-keys/{id}
PATCH
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

Supabase access token JWT for desktop clients and account-management routes such as API key administration (owner / admin required for API keys). Send as Authorization: Bearer eyJ....

Supabase access token JWT for desktop clients and account-management routes such as API key administration (owner / admin required for API keys). Send as Authorization: Bearer eyJ....
path
idstring
Required

API key UUID

Format: uuid
Content-Typestring
Required

The media type of the request body

Options: application/json
isActiveboolean

Set false to disable or true to re-enable

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). Supabase access token JWT for desktop clients and account-management routes such as API key administration (owner / admin required for API keys). Send as Authorization: Bearer eyJ....

Path Parameters

idstring
Required

API key UUID

Body

application/json
isActiveboolean

Set false to disable or true to re-enable

Responses

apiKeyobject