POST
/
workspace
/
delete
/
{workspace_id}
Delete an existing workspace
curl --request POST \
  --url https://api.callab.ai/v1/workspace/delete/{workspace_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "message": "<string>",
  "data": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string<uuid>
required

ID of the workspace to delete.

Response

Workspace deleted successfully or error if deletion fails.

status
string
required

Status of the response (e.g., 'success', 'error').

message
string
required

A descriptive message for the response (e.g., 'Workspace deleted successfully').

data
integer

A count indicating the result of the delete operation (e.g., 1 if successful, 0 if not found or not deleted).