createTask : creating a task
This is the task creation endpoint which you will submit through tasks to be solved by our servers.
When creating tasks you must specify the type and the subtask type if necessary,
please check the task types section in the documentation.
Example request
Request body table
clientKey
String
Client account key
task
Object
Task object
Example response
After creating a task successfully you will be receiving its task id which will then be used to check through the getTaskResult route.
Response structure
errorId
Integer
Error message:
0 - no error
1 - with error
errorCode
String
errorDescription
String
Error description
status
String
returns the status of the task
solution
Object
the task result, an object containing task relevant solution such as headers, cookies etc..
taskId
String
Id of the created task
Last updated