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

Query Parameters

limit
number
default:50
Required range: 1 <= x <= 500
offset
number
default:0
Required range: x >= 0
cursor
string

Response

Default Response

logs
object[]
required
total
number
required
nextCursor
string