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

  • Authorization string Required

    Authorization header

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

  • 200 application/json

    Success

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • id string(uuid)

      The unique identifier for the identifier.

    • type string | null

      The type of the identifier.

    • value string | null

      The value of the identifier.

    • status string

      Values are Unconfirmed or Confirmed.

GET /me/identifiers
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/me/identifiers' \
 --header "Authorization: string"
Response examples (200)
[
  {
    "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"
  }
]