Updates an API key
PUT /v1/apikey/{apiKeyID}
Summary
Updates an API key.
Details
Request body: JSON object. This endpoint requires an authenticated web
session and currently only updates aPIKeyDescription.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| apiKeyID | path | integer (int64) | Yes | The ID of the API key to update. | 1 |
Request Body
Required: Yes
application/json
key(integer (int64), optional)appID(integer (int64), optional)aPIKeyDescription(string, optional)accessKey(string, optional)secretKey(string, optional)status(integer (int64), optional)lastAccessDate(string (date-time), optional)creationDate(string (date-time), optional)
Example
{
"key": 1,
"appID": 1,
"aPIKeyDescription": "Example description",
"accessKey": "Example value",
"secretKey": "Example value",
"status": 1,
"lastAccessDate": "2026-03-30T12:00:00.0000000Z",
"creationDate": "2026-03-30T12:00:00.0000000Z"
}
Responses
200
Success. No response body.
No response body schema documented.