Dixa API//
- Create conversation rating offer
Create end user
Get end user
List end user conversations
Close conversation
Followup conversation
Transfer conversation
Create conversation rating result
Create conversation
Import conversation
Claim conversation
Get queue availability
Get the position of the conversation in its current queue
Create conversation ratin...
Create a rating offer for a specific conversation.
Security
ApiKeyAuth(Required scopes: conversation.satisfaction)
The rating offer to be created for a conversation
POST
curl -i -X POST \
'https://dev.dixa.io/v1/conversations/{conversationId}/ratings/offer' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"userId": "b0323b42-c428-4afa-970e-20bf5bdeeec4",
"agentId": "eeb3bbe5-0355-4ac1-8af5-20d42a3db24b",
"ratingType": "Csat",
"offeredAt": "2024-03-11T16:39:30Z"
}'Response
{ "data": { "id": "2f0122db-0824-44d7-b39a-e1f722b8c38c", "userId": "7a65c963-b3ca-4bd4-996e-bdbcaa620219", "agentId": "db7f0b41-b779-4726-a673-07b2a59a550d", "ratingType": "Csat", "offeredAt": "2024-03-11T16:39:30Z" } }