Updating contacts
You can update organization contacts using Cloud API. Do this using the following
endpoint:
- PATCH
/common/v1/contacts/{contactId}
The following example updates a contact's work phone number.
Command
PATCH /common/v1/contacts/pc:934Request
body{
"data": {
"attributes": {
"workPhone": {
"number": "801-202-2020"
}
}
}
}