Submit contact center queues

put
https://{api-gateway-hostname}
/v2/callback/contactCenter/queues
platformType
string
required

The platform type for which to submit queues.

Allowed values:
amazonConnectavayaciscofive9genesysCloudgenesysEngagegladlyniceCxOnetalkdesktwiliowebexCCwebexCCE

An object containing data, an array of contact center queues/skill groups.

data
array[object]
required
groupId
string

The group ID with which this queue or skill group is associated.

<= 255 characters
groupName
string

The group name with which this queue or skill group is associated.

<= 255 characters
id
string
required

The contact center queue or skill group ID.

<= 255 characters
name
string
required

The contact center queue or skill group name.

<= 255 characters

For a 200 response code, the response body is an object containing data, an array of contact center queues/skill groups.

responses
/
200
data
array[object]
groupId
string

The group ID with which this queue or skill group is associated.

<= 255 characters
groupName
string

The group name with which this queue or skill group is associated.

<= 255 characters
id
string

The contact center queue or skill group ID.

<= 255 characters
name
string

The contact center queue or skill group name.

<= 255 characters
Auth
:
Server Variables
:
Parameters
:
Body
curl --request PUT \
--url 'https://api.getmindful.com/v2/callback/contactCenter/queues?platformType=amazonConnect' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 123' \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"groupId": "string",
"groupName": "string",
"id": "string",
"name": "string"
}
]
}'
Response Example
1
{
2
"data": [
3
{
4
"groupId": "string",
5
"groupName": "string",
6
"id": "string",
7
"name": "string"
8
}
9
]
10
}