Skip to main content
GET
/
v1
/
analytics
/
{botId}
/
logs
List results ordered by descending creation date
curl --request GET \
  --url https://app.quick.bot/api/v1/analytics/{botId}/logs \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "botId": "<string>",
      "variables": [
        {
          "id": "<string>",
          "name": "<string>",
          "isSystemVariable": true,
          "isSavedVariable": true,
          "isSecretVariable": true,
          "value": "<string>"
        }
      ],
      "isCompleted": true,
      "hasStarted": true,
      "isArchived": true,
      "lastChatSessionId": "<string>",
      "answers": [
        {
          "blockId": "<string>",
          "content": "<string>",
          "attachedFileUrls": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

Query Parameters

limit
number
default:50
Required range: 1 <= x <= 100
cursor
string
timeFilter
enum<string>
default:last30Days
Available options:
today,
last7Days,
last30Days,
monthToDate,
lastMonth,
yearToDate,
allTime
timeZone
string

Response

Successful response

results
object[]
required
nextCursor
string | null
I