Page

If you selected api driver

goToPage

post
Authorizations
Path parameters
modestringRequired
Body
sessionUUIDstringRequired
urlstringRequired
Responses
200
Successful response
application/json
post
POST /{mode}/v1/page/goToPage HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 35

{
  "sessionUUID": "text",
  "url": "text"
}

No content

Execute browser commands

post

Executes a sequence of browser automation commands within an active session. Supports various actions like clicking, typing, hovering, and more.

Authorizations
Path parameters
modestringRequired
Body
sessionUUIDstring · uuidRequiredExample: 576626a7-2953-4790-8bc5-28a2e247ac03
Responses
200
Commands executed successfully
application/json
Responseobject
post
POST /{mode}/v1/page/executeCommands HTTP/1.1
Host: api.tasknet.co
X-Api-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 129

{
  "sessionUUID": "576626a7-2953-4790-8bc5-28a2e247ac03",
  "commands": [
    {
      "action": "Click",
      "x": 1,
      "y": 1,
      "clickCount": 1,
      "button": "left"
    }
  ]
}
{}

Last updated