This is a quick function to get a contact (person) ID by a phone number. This is valuable for many dialer integrations. After searching for the contact, you can add a note.
Function:
Name: contact/search
Type: GET
Parameters:
| Field Name | Required? | Type | Description |
| phoneNumber | Y | String | Phone number in MCA Suite. |
Example Return:
{
"success": true,
"contact": {
"id": 65760,
"firstName": "Ursula",
"lastName": "Seaqueen",
"company": {
"id": 56684,
"name": "Mermaid Island",
"dba": "Mermaid Island"
}
}
}