Skip to content

Tasks endpoint

Juan Gabriel Griggio edited this page May 9, 2024 · 1 revision

/tasks/<task_id>

  • Gets the status for a specific task id.
  • Method: GET

Return examples:

HTTP code 200 OK:

{
    "result": "completed",
    "status": "Task status (success/error)"
}

HTTP code 202 Accepted:

{
    "status": "running"
}

HTTP code 404 NOT FOUND:

{
    "error": "Task not found"
}