Dixa API//
- Patch conversation custom attributes
Patch end user custom attributes
Get custom attribute definition by id
List custom attributes definitions
Patch conversation custom...
Patch custom attributes of a conversation
Security
ApiKeyAuth
The custom attributes of an conversation to be patched. This should map the custom attribute id to the desired attribute value. Format: Map[UUID, Option[AttributeValue].
PATCH
curl -i -X PATCH \
'https://dev.dixa.io/v1/conversations/{conversationId}/custom-attributes' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"2f5515b6-7e98-4f4d-9010-bfd2a27d4f35": "012345",
"e14708a6-eed9-495c-9d88-c72331e9e247": [
"str1",
"str2"
]
}'Response
- Array of strings
- string
{ "data": [ { … }, { … } ] }