IdentityResolutionSettings
Update Identity Resolution Settings.
Update the identity resolution settings for this memory store, which determine how Customer Memory will use identifiers for searching, merging, and resolving profiles.
put/v1/ControlPlane/Stores/{storeId}/IdentityResolutionSettings
Headers
If-Matchstring
Example:"eyJpZCI6ImFuX2lkIiwidiI6MX0"
Allows for optimistic concurrency control by making the request conditional. Server will only act if the resource's current Entity Tag (ETag) matches the one provided, preventing accidental overwrites.
Request body
Example request
{
"identifierConfigs": [
{
"idType": "email",
"limitPolicy": "fifo",
"enforceUnique": true,
"normalization": "email"
}
],
"matchingRules": [
"email",
"whatsapp",
"phone"
]
}Response
Identity Resolution Settings accepted for processing.
Example response
{
"message": "Identity Resolution Settings accepted for processing."
}