mouse
Move Mouse Cursor
Moves the mouse cursor to the specified X and Y coordinates on the screen.
POST
/
api
/
mouse
/
move
Copy
curl --request POST \
--url http://localhost:4242/{computer_name}/api/mouse/move \
--header 'Content-Type: application/json' \
--data '{
"display_num": 1,
"x": 500,
"y": 300
}'
Copy
This response does not have an example.
Body
application/json
Coordinates to move the cursor to
Response
204
Successfully moved the cursor
Copy
curl --request POST \
--url http://localhost:4242/{computer_name}/api/mouse/move \
--header 'Content-Type: application/json' \
--data '{
"display_num": 1,
"x": 500,
"y": 300
}'
Copy
This response does not have an example.
Assistant
Responses are generated using AI and may contain mistakes.