Omniplex Docs
PopplioStaging

Tasks

These API endpoints are related to tasks on IBL

GET
/users/{id}/tasks/{tid}

Get Task

Gets a task. Returns the task data if this is successful

/users/{id}/tasks/{tid}

The Authorization access token

Authorization

User-Auth<token>

Requires a user token. Should be prefixed with User in Authorization header.

In: header

Path Parameters

id
Required
string

User ID

tid
Required
string

The task ID

Query Parameters

task_keystring

The task key if required. This is used to authenticate the request.

curl -X GET "https://spider-staging.omniplex.gg/users/string/tasks/string?task_key=string" \
  -H "User-Auth: <token>"

Success

{
  "allow_unauthenticated": true,
  "created_at": "2019-08-24T14:15:22Z",
  "expiry": null,
  "for_user": "string",
  "output": {
    "property1": null,
    "property2": null
  },
  "state": "string",
  "statuses": [
    {
      "property1": null,
      "property2": null
    }
  ],
  "task_id": "string",
  "task_name": "string"
}