Orders
This topic describes orders in Optimizely Data Platform (ODP) and how to send order data to ODP.
Continuing our e-commerce use case, we want to upload order data from our customers to Optimizely Data Platform (ODP). Orders track which products the customer has requested with additional metadata about the order.
Orders
Orders in ODP are represented both as Events and as Orders objects.
- The Events object stores item-level fields, meaning products that a customer purchased.
- The Orders object stores top-level order fields, meaning the order total, taxes, discounts and customer information.
Note
Each order generates an order purchase event per order line item.
For example, an order with three line items would generate three order events.
Top-level information about the order (for example, billing address, coupon and tax) are stored in the order's object and linked to order's event by Order ID (field name: order_id
).
Fields
Order line items (events)
Important
All ODP events (and, as a result, order line items) are immutable, meaning they cannot be changed after they are uploaded to ODP. If you need to process returns, refunds or cancellations see the section in this document.
Display Name | Field Name | Data Type | Description |
---|---|---|---|
Order ID | order_id | Text | The unique identifier related to this order. |
Product ID | product_id | Text | The unique identifier for the order line item. |
Order Item: Price | price | Number | The price for an order line item. |
Order Item: Quantity | quantity | Number | The number of items purchased. |
Order Item: Discount | discount | Number | The discount (if any) for the given line item. |
Order Item: Subtotal | subtotal | Number | The calculated subtotal for the given product and quantity, typically calculated after any discounts. |
Order summary (Orders object)
Note
While order events cannot be updated, the Order Summary can be updated at any point using the objects endpoint. Updates made via the Objects endpoint will not generate events.
Display Name | Field Name | Data Type | Description |
---|---|---|---|
Order ID | order_id | Text | Required. The unique identifier related to this order. |
Status | status | Text | Required. The status of the order is taken from the event action. |
Tax | tax | Number | |
Discount | discount | Number | Typically the total value of discounts for the order, including line item and order level discounts. |
Shipping | shipping | Number | |
Subtotal | subtotal | Number | Subtotal may be taken either before or after discounting, but generally should be before shipping or tax. See below for more information. |
Total | total | Number | Total should include the final amount charged to the customer after all goods, discounts, tax, and shipping are calculated. See below for more information. |
Billing Address* | bill_address | Text | The billing address for the order, lines delimited by commas. Lines should include: Street 1, Street 2, City, State/Region/Province, ZIP/Postal Code, Country. To leave a field blank, be sure to include the comma delimiter (for example, Street 1,,City) |
Shipping Address | ship_address | Text | The shipping address for the order, lines delimited by commas. Lines should include: Street 1, Street 2, City, State/Region/Province, ZIP/Postal Code, Country. To leave a field blank, be sure to include the comma delimiter (for example, Street 1,,City) |
Phone* | phone | Text | The phone number for the order in E.164 format |
Coupon Code | coupon_code | Text | |
First Name* | first_name | Text | Should match the billed customer. |
Last Name* | last_name | Text | Should match the billed customer. |
Name* | name | Text | Should match the billed customer. |
Email* | Text |
You can add other identifiers (such as an ecomm platform id) to the order record. A minimum of one identifier is required to process an order.
This data plus any other identifiers are used to create a customer record (if one does not already exist) or to fill in missing info on an existing record. Info is not overwritten if it already exists. In the case of identifiers such as email or phone, you can store or add multiple values to a single customer record; these identifiers are also used to match the order to an existing customer.
Subtotal and total relationships
ODP does not automatically calculate totals and subtotals at the order level based on item level subtotals or tax, shipping, and discounts. Instead, you send these values as you want them to be represented.
eCommerce platforms handle the definition of subtotal differently, with some of them including discounts before the subtotal and others including discounts after the subtotal (but before the total). Still others handle line item discounts differently than order-level discounts.
The most important thing is to be consistent between historic imports and real-time orders to ensure that subtotal and total are always calculated the same way across your customers and orders. To help you make this decision, be aware that LTV and Average Order Value in ODP (along with similarly derived fields) are based on the order subtotal.
Importing and updating orders
You should sending historical order data through the following methods:
- REST API
- uploaded from a CSV file via the ODP UI or Amazon (AWS) S3
The fields used in either method adhere to the schema outlined above.
Returns, refunds and cancellations
To process returns, refunds and cancellations, send an event with an event type of order
and one of the following event actions:
Note
The following event actions treat
-30
and30
as a subtotal identically. They both create new events that subtract from the original order total.
return
– a customer returned some or all of the items in an order and was refunded.refund
– a customer was issued a refund for a given order. Semantically, refunds are treated the same as returns in ODP (for example, negative impact on revenue); you can use either. Use both if you want to distinguish between inventory being returned to you (a return) and just money being issued to the original purchaser (a refund). If the inventory is returned and money is issued back to the purchaser, you should use the 'return' order action.cancel
– customer canceled their order. The order purchase and cancel events remain in ODP (for example, on the customer profile page and for segmentation), and revenue is negatively impacted, but the order no longer figures into determining the customer's lifecycle. This is in contrast to returns and refunds, where the order still counts in determining the order count, and thus lifecycle, for a customer.
Order returns, refunds and cancels can be partial. ODP determines if they are partial by tracking whether the running tally of the order's subtotal field across events is greater than zero (partial) or not.
Caution
ODP lets the subtotal and total fields for an order go negative (for example, to support purchase and refund events received out of order or to support cases where the refund amount legitimately exceeds the purchase amount). Be cautious not to issue duplicate refund, return and cancel events.
Custom order actions
You can customize the purchase
, refund
, return
and cancel
actions on the order to your business. These custom statuses are treated as below:
- If the order exists, the order details are not updated (for example, the order total would not be incremented). You can send the order information as a pass-through to an event-triggered marketing campaign without concern about changing order details.
- If the order does not exist, the order is created according to the details on the request.
Updated 8 months ago