GET
/
v1
/
conversation
/
{id}
curl --request GET \
  --url https://api.droxy.ai/v1/conversation/{id} \
  --header 'x-api-key: <api-key>'
{
  "chatbotName": "<string>",
  "startInterval": "<string>",
  "endInterval": "<string>",
  "createdAt": "<string>",
  "conversations": [
    {
      "createdAt": 123,
      "source": {
        "type": 123,
        "discordChannelId": "<string>",
        "whatsAppInfo": {
          "replyingPhoneNumberId": "<string>",
          "replyingPhoneNumber": "<string>",
          "senderPhoneNumber": "<string>",
          "senderName": "<string>"
        },
        "facebookInfo": {
          "pageId": "<string>",
          "senderId": "<string>",
          "senderName": "<string>"
        },
        "instagramInfo": {
          "instagramAccountId": "<string>",
          "senderId": "<string>",
          "senderUsername": "<string>"
        }
      },
      "messages": [
        {
          "text": "<string>",
          "fromUser": true
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The chatbot's id.

Query Parameters

start
number

The beginning of the date range to query. Unix timestamp in milliseconds.

end
number

The end of the date range to query. Unix timestamp in milliseconds.

sourceTypes
string[]

An array of conversation source types to filter on. Values can be 'app', 'website', 'link', 'discord', or 'zapier'. Leave empty to not filter on source type.

Response

200
application/json
OK

The response is of type object.