Skip to main content
POST
/
computers
/
{id}
/
restart
Restart Computer
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/restart \
  --header 'Authorization: Bearer <token>'
Restart a computer. Performs a graceful shutdown followed by a fresh start.

Use Cases

  • Recovering from a hung or unresponsive state
  • Applying system updates that require a reboot
  • Resetting the environment to a clean state

Example

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

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Response

200

Computer restarted

I