GET
/
tasks
/
{id}
curl --request GET \
  --url https://ronika-api.induced.ai/v1/tasks/{id} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "status": "<string>",
  "startedAt": "2023-11-07T05:31:56Z",
  "completedAt": "2023-11-07T05:31:56Z",
  "intent": "<string>",
  "title": "<string>",
  "summary": "<string>",
  "form": [
    {
      "type": "<string>",
      "key": "<string>",
      "value": "<string>",
      "options": [
        "<string>"
      ]
    }
  ],
  "milestones": [
    {
      "title": "<string>",
      "description": "<string>",
      "completed": true
    }
  ],
  "outputs": [
    {
      "id": "<string>",
      "type": "<string>",
      "columns": [
        "<string>"
      ],
      "prompt": "<string>",
      "summary": "<string>",
      "document": "<string>",
      "shareUrls": {},
      "downloadUrls": "<string>"
    }
  ],
  "chats": [
    {
      "id": "<string>",
      "message": "<string>",
      "role": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "files": [
    {
      "id": "<string>",
      "name": "<string>",
      "size": 123,
      "mimeType": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "previewUrl": "<string>"
    }
  ],
  "accounts": [
    {
      "id": "<string>",
      "name": "<string>",
      "url": "<string>",
      "icon": "<string>",
      "username": "<string>",
      "additionalInfo": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The unique identifier of the task.

Response

200 - application/json

A single task's details

The response is of type object.