POST
/
projects
curl --request POST \
--url https://www.orgo.ai/api/projects \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"config": {
"ram": 2,
"cpu": 2
}
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "computer-abc123",
  "status": "active",
  "desktop": {
    "id": "<string>",
    "status": "running",
    "url": "https://computer-abc123.orgo.dev"
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Body

application/json

Desktop configuration options

The body is of type object.

Response

Project created successfully

The response is of type object.