Hope you’re good. Please can you advise how I can change a phone number via the API?
I have been able to change all the other fields with the below JSON example but phone doesn’t seem to work.
Example JSON body:
{
"name": "Dale Cooper",
"phone": 5125555555,
"custom_fields" : {
"ContactID": 12345,
"AccountNumber": "P1234",
"CustomerGrade": "CC2",
"EnhancedGrade": " ",
"BranchName": "Acme Services",
"County": "Leicestershire",
"OuterPostcode": "LE"
}
}
Also tried this separately within the contact object:
{
"handles": >
{
"source": "phone",
"handle": "5125555555"
}
]
}
Thanks