ConversionRequest
Conversion tracking request
items object[]required
List of conversion items in this order
Possible values: >= 1
Array [
productIdstringrequired
Product ID (internal Neuroon ID or external ID)
Possible values: non-empty
Example:
prod_001searchLogIdstringrequired
Search log ID from the widget response
Possible values: non-empty
Example:
sl_abc123quantityint32
Quantity purchased
Example:
2lineTotalnumber
Line total for this product (price * quantity)
Example:
179.98]
orderIdstring
Order ID from the e-commerce system
Possible values: <= 255 characters
Example:
ORD-20260705-001orderTotalnumber
Total order value (all items, pre-discount, pre-tax)
Example:
189.97currencystring
ISO 4217 currency code
Possible values: <= 3 characters
Example:
EURConversionRequest
{
"items": [
{
"productId": "prod_001",
"searchLogId": "sl_abc123",
"quantity": 2,
"lineTotal": 179.98
}
],
"orderId": "ORD-20260705-001",
"orderTotal": 189.97,
"currency": "EUR"
}