Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 49.9 KB

unifiedecommerceorderoutput.md

File metadata and controls

24 lines (21 loc) · 49.9 KB

UnifiedEcommerceOrderOutput

Fields

Field Type Required Description Example
order_status OptionalNullable[str] The status of the order UNSHIPPED
order_number OptionalNullable[str] The number of the order 19823838833
payment_status OptionalNullable[str] The payment status of the order SUCCESS
currency OptionalNullable[str] The currency of the order. Authorized value must be of type CurrencyCode (ISO 4217) AUD
total_price OptionalNullable[float] The total price of the order 300
total_discount OptionalNullable[float] The total discount on the order 10
total_shipping OptionalNullable[float] The total shipping cost of the order 120
total_tax OptionalNullable[float] The total tax on the order 120
fulfillment_status OptionalNullable[str] The fulfillment status of the order PENDING
customer_id OptionalNullable[str] The UUID of the customer associated with the order 801f9ede-c698-4e66-a7fc-48d19eebaa4f
items List[models.LineItem] The items in the order [
{
"remote_id": "12345",
"product_id": "prod_001",
"variant_id": "var_001",
"sku": "SKU123",
"title": "Sample Product",
"quantity": 2,
"price": "19.99",
"total": "39.98",
"fulfillment_status": "PENDING",
"requires_shipping": true,
"taxable": true,
"weight": 1.5,
"variant_title": "Size M",
"vendor": "Sample Vendor",
"properties": [
{
"name": "Color",
"value": "Red"
}
],
"tax_lines": [
{
"title": "Sales Tax",
"price": "3.00",
"rate": 0.075
}
],
"discount_allocations": [
{
"amount": "5.00",
"discount_application_index": 0
}
]
}
]
field_mappings OptionalNullable[models.UnifiedEcommerceOrderOutputFieldMappings] The custom field mappings of the object between the remote 3rd party & Panora {
"fav_dish": "broccoli",
"fav_color": "red"
}
id OptionalNullable[str] The UUID of the order 801f9ede-c698-4e66-a7fc-48d19eebaa4f
remote_id OptionalNullable[str] The remote ID of the order in the context of the 3rd Party id_1
remote_data OptionalNullable[models.UnifiedEcommerceOrderOutputRemoteData] The remote data of the customer in the context of the 3rd Party {
"fav_dish": "broccoli",
"fav_color": "red"
}
created_at OptionalNullable[str] The created date of the object 2024-10-01T12:00:00Z
modified_at OptionalNullable[str] The modified date of the object 2024-10-01T12:00:00Z