Individuals

List Email Addresses For An Individual

GEThttps://api.getcovent.com/api/v1/individuals/ind_123/emails

List email addresses for an individual.

How to Call

Use one of the examples below to call this endpoint from your own integration.

curl -X GET "https://api.getcovent.com/api/v1/individuals/ind_123/emails" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Accept: application/json"

Request

Review headers, parameters, and body fields before calling this endpoint.

AuthorizationstringRequired

Bearer token for the proposed external API contract.

Example: Bearer <API_KEY>
AcceptstringRequired

Response format header.

Example: application/json

idstringRequired

id path parameter.

Example: ind_123

Response

200application/json

idstringRequired

id response field.

Example: email_123
emailstringRequired

email response field.

Example: jordan@example.com
labelstringRequired

label response field.

Example: work
is_primarybooleanRequired

is_primary response field.

Example: true

Response Example

[
  {
    "id": "email_123",
    "email": "jordan@example.com",
    "label": "work",
    "is_primary": true
  }
]