api_key.already_revoked
The API key is already revoked; the revoke operation is a no-op.
api_key.already_revoked is returned when a revoke request targets a key that has already been revoked. The platform rejects this rather than silently treating it as idempotent, to help callers detect unexpected state.
The key was revoked in a previous request. A second revoke on the same key triggers this error.
No action needed; the key is already revoked and cannot be used. If you need a new key, mint one via POST /v1/api-keys.
{
"error": {
"code": "api_key.already_revoked",
"message": "API key is already revoked",
"request_id": "req_01900000abc"
}
}