Dixa API//
- Create conversation
Create end user
Get end user
List end user conversations
Close conversation
Followup conversation
Transfer conversation
Create conversation rating result
Create conversation rating offer
Import conversation
Claim conversation
Get queue availability
Get the position of the conversation in its current queue
Create conversation
Create a conversation. For inbound messages the author is assumed to be the requester of the conversation (end user). For outbound messages the author is specified using the agentId field.
Security
ApiKeyAuth(Required scopes: conversation.reply)
POST
- Callback
- Chat
- ContactForm
- Sms
curl -i -X POST \
https://dev.dixa.io/v1/conversations \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"requesterId": "9c2a2cce-699f-4a72-89d9-fda5bc8dec8b",
"emailIntegrationId": "my-integration@email.dixa.io",
"subject": "order #123",
"message": {
"content": {
"value": "My order hasn'\''t shipped",
"_type": "Text"
},
"attachments": [],
"_type": "Inbound"
},
"language": "en",
"_type": "Email"
}'Response
{ "data": { "id": 100 } }