Welcome to the Dixa integrations API. Remember to set your credentials using the 'Authorize' button. Note that this API is deprecated and equivalent functionality can be found in Dixa API.
Integrations API [deprecated] (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.dixa.io/_mock/openapi/integrations-api
The Server
https://docs.dixa.io
- Mock serverhttps://docs.dixa.io/_mock/openapi/integrations-api/v1/conversations/{csid}/messages
- The Serverhttps://docs.dixa.io/v1/conversations/{csid}/messages
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/integrations-api/v1/conversations/{csid}/messages' \
-H 'Authorization: YOUR_API_KEY_HERE'A list of messages
The channel a conversation can be conducted on.
Enum"widget_chat""phone""voice_mail""email""contact_form""callback""facebook_messenger"
The channel a conversation can be conducted on.
Enum"widget_chat""phone""voice_mail""email""contact_form""callback""facebook_messenger"
Response
application/json
{ "data": [ { … } ] }
Bodyapplication/jsonrequired
The message to insert.
The channel a conversation can be conducted on.
Enum"widget_chat""phone""voice_mail""email""contact_form""callback""facebook_messenger"
- Mock serverhttps://docs.dixa.io/_mock/openapi/integrations-api/v1/conversations/{csid}/messages/historical
- The Serverhttps://docs.dixa.io/v1/conversations/{csid}/messages/historical
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.dixa.io/_mock/openapi/integrations-api/v1/conversations/{csid}/messages/historical' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"channel": "widget_chat",
"direction": "outbound",
"from_email": "string",
"to_email": "string",
"text": "string",
"author_id": "string",
"attachments": [
{
"url": "string"
}
]
}'The message was createde
The channel a conversation can be conducted on.
Enum"widget_chat""phone""voice_mail""email""contact_form""callback""facebook_messenger"
The channel a conversation can be conducted on.
Enum"widget_chat""phone""voice_mail""email""contact_form""callback""facebook_messenger"
Response
application/json
{ "data": { "id": "string", "created_at": "2015-11-30T00:00:00:000Z", "author_id": "string", "channel": "widget_chat", "direction": "widget_chat", "attributes": { … } } }