order
{
"type": "order",
"order": {
"id": "0987654321", // either your original id or a pseudonymized value - i.e. same input always produces same anonymous output
"lines": [
{
"sku": "654321-7890",
"grossPrice": {
"amount": 0.99, // unit price - i.e. price of 1 item not the sum of 5
"currency": "EUR" // currency code as defined by ISO 4217
},
"quantity": 5 // how many items where bought
},
{
"sku": "567890-4321",
"grossPrice": {
"amount": 49.95,
"currency": "EUR"
},
"quantity": 1
}
]
},
"context": [
{
"type": "user",
"user": {
"id": "c57a43f7-eefc-462b-b5a8-0ef421e90f67"
}
}
]
}example for order.id pseudonymization
Last updated
Was this helpful?