Skip to main content
DELETE
/
computers
/
{id}
Delete Computer
curl --request DELETE \
  --url https://www.orgo.ai/api/computers/{id} \
  --header 'Authorization: Bearer <token>'
Permanently delete a computer. This action cannot be undone.

Behavior

  • Computer will be stopped if currently running
  • All data on the computer will be lost
  • Returns 200 status code on successful deletion

Example

curl -X DELETE https://www.orgo.ai/api/computers/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer sk_live_..."

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Response

200

Computer deleted

I