v3

latestOpenAPI 3.0.1Apache 2.0raw.githubusercontent.com2026-08-014669239.7 KB
Identifiers

Retrieve Profile Identifier

Retrieve all stored values for a specific identifier type on a profile. Values are normalized according to the configured identifier settings and returned in the order determined by its limitPolicy.

get/v1/Stores/{storeId}/Profiles/{profileId}/Identifiers/{idType}

Response

Identifier values associated with the requested type.

idTypestring required

Identifier type defined in Identity Resolution Settings.

valuesstring[] required

Server managed collection of stored values for the identifier type. Identifier values are normalized according to the corresponding identifier settings and ordered chronologically.

Example response

{
  "idType": "email",
  "values": [
    "primary@example.com",
    "backup@example.com"
  ]
}