This method allows you to get data about a specific dialog.
GET https://api.dashly.app/conversations/{id}
The conversation ID should be used as {id}
.
Authentification parameters.
id_as_string parameter.
Conversation optional fields enabling parameters.
user
, channel
, important_part_last
, reply_last
, part_last
optional fields are inclyded by default
data
contains Conversation object.
{
"data": {
"id": 7100586,
"created": 1450342055,
"user": {
"id": 7722092,
"app": 3,
"user_id": "27384",
"presence": "idle",
"props": {
"$last_seen": "2015-12-17T13:01:32",
"$name": "Alex",
"$email": "alex@example.com",
...
}
},
"read": true,
"replied": true,
"clicked": false,
"unsubscribed": false,
"closed": false,
"message": null,
"type": "popup_chat",
"reply_type": "text",
"part_last": {
"id": 7855356,
"created": 1450345019,
"conversation": 7100586,
"body": "...",
"type": "reply_user",
"sent_via": "web_user",
"from": 16588048
},
"parts_count": 13,
"assignee": null,
"unread_parts_count": 2,
"last_admin": {
"id": 24601,
"name": "Maks",
"avatar": "https://files.dashly.app/avatars/1446021235578-n653y667.jpg",
"type": "admin"
},
"last_update": 1450345019,
"tags": []
}
"meta": {
"status": 200
}
}
curl -X GET -H "Authorization: Token XXX" "https://api.dashly.app/conversations/313341"