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
x
integer
required

X coordinate

y
integer
required

Y coordinate

button
enum<string>
default:left
Available options:
left,
right
double
boolean
default:false

Perform double click

Response

Action completed successfully

success
boolean
Example:

true