Revokes an API key by soft-deleting it. The key’s Redis cache is cleared immediately, so it stops working right away.
Browser-authenticated endpoint (session cookie + CSRF).
Path Parameters
The authenticated user’s ID.
The key ID to revoke (e.g., SK2026A00001).
Response
Whether the revocation succeeded.
curl -X DELETE https://<your-instance>/v1/api-keys/U2026A00001/SK2026A00001 \
-H "Cookie: LASID=<session-token>" \
-H "CTN: <csrf-token>"
{
"success": true,
"keyId": "SK2026A00001",
"revoked": true
}