GET
/
v0.1
/
tasks
/
{id}
{
  "status": "success",
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "created_at": "<string>",
    "live_version": 123,
    "max_version": 123,
    "inputs": [
      {
        "name": "<string>",
        "type": "<string>",
        "description": "<string>"
      }
    ],
    "outputs": [
      {
        "name": "<string>"
      }
    ],
    "run_count": 123
  },
  "message": "<string>",
  "error": {
    "code": 123,
    "details": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Response

200
application/json
Successfully retrieved task from id
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required
message
string
required
error
object