curl --request GET \
--url http://127.0.0.1:3333/v3/bots/{botId}/results/{resultId} \
--header 'Authorization: Bearer <token>'{
"result": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"botId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>",
"isSessionVariable": true
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"lastChatSessionId": "<string>",
"answers": [
{
"blockId": "<string>",
"content": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"groupId": "<string>",
"variableId": "<string>",
"attachedFileUrls": [
"<string>"
]
}
]
}
}Get a specific result.
curl --request GET \
--url http://127.0.0.1:3333/v3/bots/{botId}/results/{resultId} \
--header 'Authorization: Bearer <token>'{
"result": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"botId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>",
"isSessionVariable": true
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"lastChatSessionId": "<string>",
"answers": [
{
"blockId": "<string>",
"content": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"groupId": "<string>",
"variableId": "<string>",
"attachedFileUrls": [
"<string>"
]
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
Show child attributes