Skip to main content

GET /contacts/:uuid/bot

Get the bot associated with a specific contact.

Example Request

curl -X GET "https://api.callbell.eu/v1/contacts/414a6d692bd645ed803f2e7ce360d4c8/bot" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

ParameterTypeDescription
botBotThe object representing the bot.

Example Response

response.json
{
"bot": {
"uuid": "f7155fc557b74597b429bd3dbb5ca677",
"name": "My Bot",
"status": "in_progress",
"conversationStartedAt": "2024-03-11T17:57:09Z",
"version": 5,
"latestBotVersion": true
}
}