I need to update the whatsapp_phone field value through manychat api, but sendning a different value it don't update as expected, here is an example of the payload that i’m sending to the /fb/subscriber/updateSubscriber endpoint:
{
"subscriber_id": "123456789",
"first_name": "First Name",
"last_name": "Last Name",
"phone": "+5589999999999",
"whatsapp_phone": "+5589999999999",
"optin_whatsapp": true,
"has_opt_in_sms": false,
"has_opt_in_email": false
}
With that the phone field is updated but the whatsapp_phone not.
I'm doing anything wrong or it's just impossible to update that field and i nedd to create another subscriber with the updated whatsapp number?