getTaskResult : getting task result

After creating a task and getting its ID back using createTask, you must use getTaskResult to fetch the solution of the task.

  • Tasks data will expire 15 minutes after their creation whether their result was successful or not, they will not be accessible.

  • Depending on the system load, the maximum time the task can take is 20 seconds.

  • External factors such as our server location and the proxy location can affect the time it takes for getting a result.

Example request

{
    "clientKey":"CRABKEYINHEREFOREXAMPLEPURPOSES012345",
    "taskId": "37223a89-06ed-442c-a0b8-22067b79c5b4"
}

Request body table

Key
Type
Optional ?
Description

clientKey

String

No

Your client key

taskId

String

No

ID when you create the task using createTask

Last updated