Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (33 loc) · 1.57 KB

File metadata and controls

41 lines (33 loc) · 1.57 KB

Get Chat Times

HTTP MethodURLRequires Auth
GET/api/v1/livechat/analytics/dashboards/charts/timingsyes

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

Query Parameters

KeyExample ValueDescription
start*2021-07-20T19:00:00.000ZThe start time.
end*2021-07-21T18:59:59.000ZThe end time.
departmentIdCAJioQNAvLnYWTy8iThe department ID. This parameter is optional.

Example Call

{% code overflow="wrap" %}

curl --location --request GET 'http://localhost:3000/api/v1/livechat/analytics/dashboards/charts/timings?departmentId=CAJioQNAvLnYWTy8i&start=2021-07-20T19:00:00.000Z&end=2021-07-21T18:59:59.000Z\
--header 'X-Auth-Token: myauth-token' \
--header 'X-User-Id: myuser-name'

{% endcode %}

Example Response

{
    "response": {
        "avg": 0,
        "longest": 0
    },
    "reaction": {
        "avg": 0,
        "longest": 0
    },
    "chatDuration": {
        "avg": 0,
        "longest": 0
    },
    "success": true
}