Hello community,
I am seeking assistance with an issue I've encountered. I am attempting to update a user's additional fields using the PUT /manage/v1/user/{id} endpoint. However, I'm facing some challenges and would appreciate your help.
The message structure I'm using for the update is as follows:
{
"userid": "test@test.com",
"email": "test@test.com",
"additional_fields": {
"3": "Finland",
"4": "No"
}
}
Upon sending the request, I receive a response indicating "success." However, I've noticed that the additional fields are not being updated as expected. To make matters worse, if the user already had some values in these fields, they are being replaced to “blank” by my request.
Thank you in advance for your support.