GET
/
v3
/
bots
/
{botId}
/
results
/
export
/
{exportId}
Get Results Export Status
curl --request GET \
  --url http://127.0.0.1:3333/v3/bots/{botId}/results/export/{exportId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "botId": "<string>",
  "workspaceId": "<string>",
  "status": "queued",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "progress": 123,
  "processed": 123,
  "total": 123,
  "url": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

botId
string
required
exportId
string
required

Response

200 - application/json

Default Response

id
string
required
botId
string
required
workspaceId
string
required
status
enum<string>
required
Available options:
queued,
processing,
done,
error
createdAt
string
required
updatedAt
string
required
progress
number
processed
number
total
number
url
string
error
string