JavaScript
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>" }
Permanently delete a management API key.
Bearer token authentication
The management API key ID
Key deleted successfully
true
Was this page helpful?