Skip to content

Phone

A phone number and a collection of phone numbers.

A phone number.

PropertyTypeRequiredDescription
countryCodestringYesThe international country code (e.g., "+1" for US/Canada).
numberstringYesThe local phone number without the country code.
extensionstringNoOptional extension number for the phone line.
isMobilebooleanNoIndicates whether this is a mobile/cell phone number.
{
"countryCode": "+1",
"number": "555-123-4567",
"extension": "123",
"isMobile": false
}

A collection of phone numbers for a person.

PropertyTypeRequiredDescription
primaryPhoneYesThe person's primary phone number.
faxPhoneNoThe person's fax number, if applicable.
otherPhonesRecordPhoneNoAdditional phone numbers not covered by the standard fields.
{
"primary": {
"countryCode": "+1",
"number": "444-456-1230",
"isMobile": true
},
"fax": {
"countryCode": "+1",
"number": "555-123-4567",
"extension": "123",
"isMobile": false
},
"otherPhones": {
"support": {
"countryCode": "+1",
"number": "333-456-1230",
"isMobile": false
},
"marketing": {
"countryCode": "+1",
"number": "444-456-1230",
"isMobile": true
}
}
}