JavaScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/workspaces/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "deleted": true }
Delete a workspace by id or slug.
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
Workspace UUID or slug.
Workspace deleted
true
Was this page helpful?