Skip to main content

Mark Customer Pair as Not Duplicate

POST 

/api/v2/customers/dedup-decisions

Record a decision that two customers are not duplicates of each other, so the pair stops appearing in duplicate detection results. The decision is order-independent (the pair is stored with the lower ID first) and idempotent - repeating the call for the same pair returns the existing decision.

Required scope: customers:write

Grant this scope to your token under Settings → Developer → Personal Access Tokens.

For scope 'qbo', the IDs refer to customer records synced from the connected QuickBooks Online instance identified by integration_instance_id.

Body fields:

  • customer_id_a (integer, required): first customer of the pair.
  • customer_id_b (integer, required): second customer of the pair; must differ from customer_id_a.
  • scope (string, required): 'sku' or 'qbo'.
  • integration_instance_id (integer, optional): the connected integration instance the decision applies to (used with scope 'qbo'); must reference an existing integration instance.

Authentication: Requires Bearer token with the customers read/write scope and the customer merge permission.

Request

Responses

OK

Response Headers
    Content-Type