curl --request GET \
--url https://app.quick.bot/api/v1/analytics/{botId}/answers/{resultId} \
--header 'Authorization: Bearer <token>'{
"result": {
"id": "<string>",
"createdAt": "<string>",
"botId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>",
"isSystemVariable": true,
"isSavedVariable": true,
"isSecretVariable": true
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"lastChatSessionId": "<string>",
"answers": [
{
"blockId": "<string>",
"content": "<string>",
"attachedFileUrls": [
"<string>"
]
}
]
}
}curl --request GET \
--url https://app.quick.bot/api/v1/analytics/{botId}/answers/{resultId} \
--header 'Authorization: Bearer <token>'{
"result": {
"id": "<string>",
"createdAt": "<string>",
"botId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>",
"isSystemVariable": true,
"isSavedVariable": true,
"isSecretVariable": true
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"lastChatSessionId": "<string>",
"answers": [
{
"blockId": "<string>",
"content": "<string>",
"attachedFileUrls": [
"<string>"
]
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The resultId is returned by the /startChat endpoint or you can find it by listing results with /results endpoint
Successful response
Show child attributes