Skip to main content
POST
/
v1
/
desktop
/
mouse
/
click
Click on the desktop.
curl --request POST \
  --url http://localhost:2468/v1/desktop/mouse/click \
  --header 'Content-Type: application/json' \
  --data '
{
  "x": 123,
  "y": 123,
  "button": "left",
  "clickCount": 1
}
'
{
  "x": 123,
  "y": 123,
  "screen": 123,
  "window": "<string>"
}

Body

application/json
x
integer<int32>
required
y
integer<int32>
required
button
enum<string>
Available options:
left,
middle,
right
clickCount
integer<int32> | null
Required range: x >= 0

Response

Desktop mouse position after click

x
integer<int32>
required
y
integer<int32>
required
screen
integer<int32> | null
window
string | null