POST
/
computers
/
{id}
/
click
Mouse Click
curl --request POST \
  --url https://www.orgo.ai/api/computers/{id}/click \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "x": 123,
  "y": 123,
  "button": "left",
  "double": false
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token

Path Parameters

id
string
required

Computer/Project name (e.g., computer-abc123)

Body

application/json

Response

200
application/json

Action completed successfully

The response is of type object.