GET
/
v3
/
bots
/
{botId}
/
results
/
{resultId}
/
logs
Get Result Logs
curl --request GET \
  --url http://127.0.0.1:3333/v3/bots/{botId}/results/{resultId}/logs \
  --header 'Authorization: Bearer <token>'
{
  "logs": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "resultId": "<string>",
      "status": "<string>",
      "description": "<string>",
      "details": "<string>",
      "context": "<string>"
    }
  ],
  "nextCursor": "<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
resultId
string
required

Query Parameters

limit
number
default:200
Required range: 1 <= x <= 500
cursor
string

Response

Default Response

logs
object[]
required
nextCursor
string