Skip to main content
DELETE
/
computers
/
{id}
Delete computer
curl --request DELETE \
  --url https://www.orgo.ai/api/computers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}
Permanently deletes a computer and all its data.
This action cannot be undone. All files and state will be lost.

Path parameters

id
string
required
Computer ID.

Response

success
boolean
true if deletion was successful.

Example

curl -X DELETE https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002 \
  -H "Authorization: Bearer $ORGO_API_KEY"

Response

{
  "success": true
}

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Response

Computer deleted

success
boolean
Example:

true