Dixa API//
- Patch end user custom attributes
Patch conversation custom attributes
Get custom attribute definition by id
List custom attributes definitions
Patch end user custom att...
Patch custom attributes of an end user
Security
ApiKeyAuth
The custom attributes of an end user 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/endusers/{userId}/custom-attributes' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"274e5a2c-be0d-42c0-b725-3dd533729f68": "abcdef",
"befae0d9-9679-42b9-af76-e76f64e28429": [
"example1",
"example2"
]
}'Response
- Array of strings
- string
{ "data": [ { … }, { … } ] }