Skip to main content
POST
/
v1
/
desktop
/
mouse
/
scroll
Scroll the desktop mouse wheel.
curl --request POST \
  --url http://localhost:2468/v1/desktop/mouse/scroll \
  --header 'Content-Type: application/json' \
  --data '
{
  "x": 123,
  "y": 123,
  "deltaX": 123,
  "deltaY": 123
}
'
{
  "x": 123,
  "y": 123,
  "screen": 123,
  "window": "<string>"
}

Body

application/json
x
integer<int32>
required
y
integer<int32>
required
deltaX
integer<int32> | null
deltaY
integer<int32> | null

Response

Desktop mouse position after scroll

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