Skip to main content
DELETE /v1/instances/:instanceId Soft-deletes an instance by setting its status to DELETED. The record is retained in the database but no longer returned in list or get operations.

Request

Headers

HeaderValue
AuthorizationBearer <token>

Path parameters

ParameterTypeDescription
instanceIdstringThe instance ID to delete

Response 204

No content. The instance has been deleted.

Errors

CodeDescription
401Missing or invalid token
404Instance not found, already deleted, or does not belong to the user

Example

curl -X DELETE https://cawme.com/api/v1/instances/inst_abc123 \
  -H "Authorization: Bearer <token>"
Deletion is permanent — deleted instances cannot be restored.