v3

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

Retrieve Identity Resolution Settings.

These settings determine how Customer Memory will use identifiers for searching, merging, and resolving profiles.

Some settings can only take on their default values and are not yet available to change, but coming soon.

get/v1/ControlPlane/Stores/{storeId}/IdentityResolutionSettings

Response

Identity resolution settings retrieved successfully

matchingRulesstring[]

Priority list of identifiers to locate profiles to apply new data to, or for determining if two existing profiles should merge. Rules are evaluated in order.

  • If no rule matches against existing profiles, a new profile will be created.
  • If a rule matches to a single existing profile, the profile will be updated.
  • If a rule matches to multiple existing profiles, those existing profiles will be merged.
versioninteger required

The current version number of the Identity Resolution Settings. Incremented on each successful update.

Example response

{
  "identifierConfigs": [
    {
      "idType": "email",
      "limitPolicy": "fifo",
      "enforceUnique": true,
      "normalization": "email"
    }
  ],
  "matchingRules": [
    "email",
    "whatsapp",
    "phone"
  ],
  "version": 3
}