Retrieve current contact center metrics

get
https://{api-gateway-hostname}
/v2/callback/contactCenter/metrics
platformType
string
required

The platform type for which to retrieve metrics.

Allowed values:
amazonConnectavayaciscofive9genesysCloudgenesysEngagegladlyniceCxOnetalkdesktwiliowebexCCwebexCCE

For a 200 response code, the response body is an object containing data, an array of contact center or skill group metrics.

responses
/
200
data
array[object]
metrics
object
timestamp
string

The ISO-8601/RFC-3339-formatted UTC timestamp at which the metrics were last updated.

Auth
:
Server Variables
:
Parameters
:
curl --request GET \
--url 'https://api.getmindful.com/v2/callback/contactCenter/metrics?platformType=amazonConnect' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 123'
Response Example
1
{
2
"data": [
3
{
4
"metrics": {
5
"availableAgentCount": 0,
6
"averageAbandonRate": 0,
7
"averageAnswerTime": 0,
8
"averageHandleTime": 0,
9
"estimatedWaitTime": 0,
10
"estimatedWaitTimeHigh": 0,
11
"loggedInAgentCount": 0,
12
"longestCallWaiting": 0,
13
"queuedCallsCount": 0
14
},
15
"timestamp": "string"
16
}
17
]
18
}