Read identifiers

GET /me/identifiers

Read identifiers for a profile, where identifiers, such as an email and a phone, may or may not be verified.

Headers

Query parameters

  • type string

    The type of identifiers to retrieve.

  • status string

    Status of the identifier as per communication status type.

    Values are Unconfirmed or Confirmed.

Responses

GET /me/identifiers
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/me/identifiers \
 -H "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174002",
    "type": "Email",
    "value": "john.doe@example.com",
    "status": "Confirmed"
  },
  {
    "id": "123e4567-e89b-12d3-a456-426614174003",
    "type": "Phone",
    "value": "+47-87654321",
    "status": "Unconfirmed"
  }
]