Python
import os from skylight_sdk import Skylight with Skylight( apikey=os.getenv("SKYLIGHT_APIKEY", ""), ) as skylight: res = skylight.interact.move(instance_id="<id>", x=100, y=200) # Handle response print(res)
{ "message": "<string>", "status": "<string>" }
Move the mouse to the specified coordinates
Requires API key authentication.
API key authentication
Successfully moved mouse
The response is of type object.
object