Read identifiers
Read identifiers for a profile, where identifiers, such as an email and a phone, may or may not be verified.
        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"
  }
]