Skip to main content
DELETE
/
management
/
keys
/
{id}
Delete management API key
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/management/keys/{id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string
required

The management API key ID

Response

Key deleted successfully

ok
enum<boolean>
required
Available options:
true
message
string
required
Last modified on February 11, 2026