Read an identifier by ID

GET /me/identifiers/{id}

Read details of a specific identifier identified by its unique ID.

Headers

  • Authorization string Required

    Authorization header

Path parameters

  • id string(uuid) Required

    A unique identifier for the identifier within 24SevenOffice.

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/{id}
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/me/identifiers/{id}' \
 --header "Authorization: string"
Response examples (200)
{
  "id": "123e4567-e89b-12d3-a456-426614174002",
  "type": "Email",
  "value": "john.doe@example.com",
  "status": "Confirmed"
}