GET
/
projects
/
{projectId}
/
conversations
curl --request GET \
  --url https://api.chat-dash.com/v1/public/projects/{projectId}/conversations \
  --header 'Authorization: <authorization>'
[
  {
    "_id": "<string>",
    "platformId": "<string>",
    "name": "<string>",
    "read:": true,
    "endedAt": "<string>",
    "browser": "<string>",
    "device": "<string>",
    "os": "<string>",
    "countryCode": "<string>",
    "ipAddress": "<string>",
    "record": true,
    "interacted": true,
    "isLive": true,
    "channel": "<string>",
    "phone": "<string>",
    "instagramId": "<string>",
    "instagramUsername": "<string>"
  }
]

Headers

Authorization
string
required

All requests to the ChatDash API must be validated with the agency API Key found on your agency profile

Path Parameters

projectId
string
required

The ID of the project

Query Parameters

startDate
string

Date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)

endDate
string

Date in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)

record
boolean

Whether to return conversations that are set to be recorded

interacted
boolean

Whether to return conversations that have user interaction

Response

200
application/json

OK

The response is of type object[].