Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.76 KB

File metadata and controls

57 lines (45 loc) · 1.76 KB

Get Conversations by Tags

View the metrics of omnichannel conversations in your workspace during a selected time range based on their tags.

HTTP MethodURLRequires Auth
GET/api/v1/livechat/analytics/dashboards/conversations-by-tagsyes

{% hint style="info" %} Permission required: view-livechat-reports {% endhint %}

Query Parameters

KeyExample ValueDescription
start*2023-11-28T00:11:22.345ZThe start time.
end*2023-11-29T00:11:22.345ZThe end time.

Example Call

curl --location --request GET 'http://localhost:3000/api/v1/livechat/priorities\
--header 'X-Auth-Token: myauth-token' \
--header 'X-User-Id: myuser-id'

Example Response

{
    "total": 5,
    "data": [
        {
            "label": "tech",
            "value": 1
        },
        {
            "label": "solved",
            "value": 1
        },
        {
            "label": "self",
            "value": 1
        },
        {
            "label": "testtags",
            "value": 2
        }
    ],
    "unspecified": 55,
    "success": true
}

Change Log

Version Description
6.4.0 Added