Search for conversations containing a particular text or by filter or combine them both
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:" } }
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": [ { … } ] }