JavaScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/keys/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "deleted": true }
Delete an API key in the authenticated workspace.
Documentation IndexFetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication
API key identifier or hash.
API key deleted
true
Was this page helpful?