POST
/
tasks
curl --request POST \
  --url https://ronika-api.induced.ai/v1/tasks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "intent": "<string>",
  "files": [
    null
  ],
  "accounts": [
    "<string>"
  ],
  "details": [
    {
      "type": "<string>",
      "key": "<string>",
      "value": "<string>",
      "options": [
        "<string>"
      ]
    }
  ],
  "expectedOutput": {
    "type": "<string>",
    "columns": [
      "<string>"
    ],
    "prompt": "<string>"
  }
}'
{
  "id": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Response

200 - application/json

Task creation success response

The response is of type object.