Skip to main content

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_001
    searchLogIdstringrequired

    Search log ID from the widget response

    Possible values: non-empty

    Example: sl_abc123
    quantityint32

    Quantity purchased

    Example: 2
    lineTotalnumber

    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-001
    orderTotalnumber

    Total order value (all items, pre-discount, pre-tax)

    Example: 189.97
    currencystring

    ISO 4217 currency code

    Possible values: <= 3 characters

    Example: EUR
    ConversionRequest
    {
    "items": [
    {
    "productId": "prod_001",
    "searchLogId": "sl_abc123",
    "quantity": 2,
    "lineTotal": 179.98
    }
    ],
    "orderId": "ORD-20260705-001",
    "orderTotal": 189.97,
    "currency": "EUR"
    }