Customer IDs

Retrieve IDs for a specific customer. This is a definition of the Customer attributes method used to retrieve a customer ID.

Authorization

Available access typePermissions needed
Private accessNone

Attributes object definition for Customer IDs

Each ID attribute object in the Customer attributes method must have type and id properties.

ParameterValue
type"id"
idThe name of the external customer ID that you want to retrieve. e.g. cookie or email_id

Payload example

{
 "customer_ids": {
  "registered": "[email protected]"
 },
 "attributes": [
  {
    "type": "id",
    "id": "cookie"
  }
 ]
}