Search for conversations containing a particular text or by filter or combine them both
Dixa API//
- List rating
Anonymize conversation
Anonymize message
Close conversation
Followup conversation
Reopen conversation
Transfer conversation
Add internal notes
List internal notes
Add internal note
Create conversation rating result
Create conversation rating offer
List ratings for a conversation
List organization activity log
List flows
Tag conversation
Untag conversation
Bulk tag conversation
List tags
List messages
Add message
Create conversation
Import conversation
Patch conversation custom attributes
Claim conversation
List activity log
Get conversation
Link a conversation to a parent conversation
List linked conversations
Search conversations with filters
Search conversations
List rating
Dixa API (beta)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.dixa.io/_mock/openapi/dixa-api/beta
https://dev.dixa.io
Query
Bodyapplication/jsonMaximum number of results per page. May be used in combination with pageKey to change the number of results in between page requests.
The filters to apply to the search
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/search/conversations
- https://dev.dixa.io/beta/search/conversations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/search/conversations?pageLimit=0&pageKey=string' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"filters": {
"strategy": "All",
"conditions": [
{
"field": {
"operator": {
"values": [
"177e7564-6434-4177-a25a-8530089196ad",
"7729e7564-9876-a637-b46b-8530038196b3"
],
"_type": "IncludesOne"
},
"_type": "TagId"
}
}
]
}
}'Response
application/json
{ "data": [ { … }, { … }, { … } ], "meta": { "next": "/<api-version>/search/conversations/?pageKey=cGFnZUxpbWl0PTUwJnBhZ2U9MQ%3D%3D:" } }
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/conversations/{conversationId}/rating
- https://dev.dixa.io/beta/conversations/{conversationId}/rating
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/conversations/{conversationId}/rating' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … } ] }
Query
Maximum number of results per page. May be used in combination with pageKey to change the number of results in between page requests.
Base64 encoded form of pagination query parameters. Do not try to construct or change programmatically as the internal structure may change without notice.
The text by which to search conversations
Example: query=cancel my order
- Mock serverhttps://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/search/conversations
- https://dev.dixa.io/beta/search/conversations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.dixa.io/_mock/openapi/dixa-api/beta/beta/search/conversations?pageLimit=0&pageKey=string&query=cancel+my+order&exactMatch=true' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "data": [ { … } ] }