Skip to main content

Email Contact Object Model

Overview

Key: emailContact

The emailContact Object Model within the profileAPI system is the email that belong to a person or company. The following are the fields that are included in email.

Properties

Email

  • Key: email
  • Data Type: email
  • Description: Represents an email address, conforming to the standard format defined in RFC 5322.
  • Example: [email protected]

Type

  • Key: type
  • Data Type: string
  • Description: Indicates the type of email, which must be either professional or personal.
  • Example: professional

Last Validated At

  • Key: lastValidatedAt
  • Data Type: date
  • Description: An ISO 8601 formatted date string that indicates when the email 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 email.
  • Example: 0.95

Example

{
"email": "[email protected]",
"type": "professional",
"lastValidatedAt": "2020-08-12T02:12:33.231Z",
"scoreValue": 0.95
}