Skip to main content
DELETE
/
workspace
/
{id}
curl -X POST "https://app.drime.cloud/api/v1/workspace/1873?_method=DELETE" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success"
}

Overview

Permanently deletes a workspace and all its contents. Only the workspace owner can delete a workspace.
This action is irreversible. All files, folders, and data in the workspace will be permanently deleted.

Path Parameters

id
integer
required
The workspace ID to delete

Query Parameters

_method
string
required
Must be DELETE (Laravel method spoofing)

Response

status
string
Request status (success)
curl -X POST "https://app.drime.cloud/api/v1/workspace/1873?_method=DELETE" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success"
}
Due to Laravel’s method spoofing, you need to send a POST request with _method=DELETE query parameter.