Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 1.41 KB

File metadata and controls

17 lines (11 loc) · 1.41 KB

CustomerSummaryOrders

Lists details about orders related to the customer. Lists only data for orders with the PAID or FULFILLED status. Data from orders with a CREATED or CANCELED status are not included. The data is updated also when an order changes status.

Properties

Name Type Description Notes
total_amount int The total amount spent by the customer. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
total_count int Total number of orders made by the customer. [optional]
average_amount int Average amount spent on orders. `total_amount` ÷ `total_count`. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
last_order_amount int Amount spent on last order. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. [optional]
last_order_date datetime Timestamp representing the date and time of the customer's last order in ISO 8601 format. [optional]

[Back to Model list] [Back to API list] [Back to README]