Phone Contact Object Model
Overview
Key: phoneContact
The phoneContact
Object Model within the profileAPI system is the phone that belong to a person
or company
. The following are the fields that are included in phoneContact
.
Properties
Phone
- Key:
phone
- Data Type:
phone
- Description: Represents a phone number formatted according to the E.164 international numbering standard.
- Example:
+1234567890
Type
- Key:
type
- Data Type:
string
- Description: Indicates the type of phone number, which must be either
business
ormobile
. - Example:
mobile
Last Validated At
- Key:
lastValidatedAt
- Data Type:
date
- Description: An ISO 8601 formatted date string that indicates when the phone number was last validated.
- Example:
2020-08-12T02:12:33.231Z
Score Value
- Key:
scoreValue
- Data Type:
number
- Description: A numerical value between 0 and 1 that reflects the quality or reliability of the phone number.
- Example:
0.90
Example
{
"phone": "+1234567890",
"type": "mobile",
"lastValidatedAt": "2020-08-12T02:12:33.231Z",
"scoreValue": 0.90
}