I'm using an admin token to set user_fields of an end user.
Endpoint: /users/{id}
Method: PUT
Body:
user: {
user_fields: {
"push_notification_tokens": "XXX",
},
},
};
push_notification_tokens is a multiline text field.
Response is 200 OK, with user_fields showing the correct value. But when I retrieve the user using the API, or in the Zendesk interface, the property is not set.
Same issue for boolean fields, they result in a 200 OK with the correct value, but in reality the value does not change.
I had the same issue yesterday. Today it seemed to work, until now. Why is this happening?