Listrak · Example Payload

Listrak Data_Order Example

Import retail order data into Listrak for behavioral targeting

Email MarketingSMS MarketingMarketing AutomationCross-ChannelRetailPush NotificationsData ImportPrivacy

Listrak Data_Order Example is an example object payload from Listrak, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptionrequestresponse

Example Payload

Raw ↑
{
  "name": "Import Order Data",
  "description": "Import retail order data into Listrak for behavioral targeting",
  "request": {
    "method": "POST",
    "url": "https://api.listrak.com/data/v1/Order",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "orders": [
        {
          "orderId": "ORD-001",
          "emailAddress": "customer@example.com",
          "orderDate": "2026-06-13T12:00:00Z",
          "orderTotal": 129.99,
          "lineItems": [
            {
              "sku": "SKU-12345",
              "productName": "Blue Sneakers",
              "quantity": 1,
              "unitPrice": 79.99
            }
          ]
        }
      ]
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": 200,
      "data": {
        "importId": "abc123"
      }
    }
  }
}