Company logoTrust Center Documentation
API v1 Reference/Integrations/Api keys

Delete API key

Delete an API key by ID. This action cannot be undone and will immediately revoke access for any integrations using this key.

DELETE
/api/v1/integrations/api-keys
AuthorizationBearer <token>

In: header

Query Parameters

idstring

The ID of the API key to delete

Formatuuid

Response Body

fetch("https://app.orbiqhq.com/api/v1/integrations/api-keys?id=497f6eca-6276-4993-bfeb-53cbbbba6f08")
{
  "success": true,
  "data": {
    "id": "key-123"
  }
}
{
  "success": false,
  "error": "API Key ID is required"
}
Empty
{
  "success": false,
  "error": "API Key not found"
}
Empty

How is this guide?