The Order object
A Rutter Order represents an order processed by a merchant's store. Every order is linked to Fulfillments, Transactions, Products, Variants, and a Customer.
Every order contains a line_items
array containing information about the products included in the order.
Properties
id
stringThe Rutter generated unique ID of the order.
platform_id
stringoptionalThe platform specific ID of the order.
cancelled_at
stringoptionalThe ISO 8601 timestamp that the order was cancelled. SHOPIFY
only.
payment_status
enumThe payment status of the order.
status
enumThe status of the order.
total_discount
numberThe sum of all discounts applied to the total price.
total_price
numberThe total price of the order.
fulfillment_status
enumnullableThe status of the fulfillment for the order.
iso_currency_code
stringnullableThe ISO 4217 currency code of the order.
name
stringoptionalThe name of the order. Supported for SHOPIFY
only.
order_number
stringoptionalThe merchant facing order ID.
source_name
stringoptionalThe source name of the order. Supported for SHOPIFY
only.
total_line_items_price
numberoptionalThe total price of all line items of the order. Supported for SHOPIFY
only.
total_shipping
numbernullableThe sum of all shipping costs.
total_shipping_discount
numberoptionalThe sum of all discounts on shipping applied to the total price.
total_tax
numbernullableThe total tax paid on the order.
tags
arrayoptionalThe tags of the order. Supported for SHOPIFY
only.
String array.
billing_address
objectnullablebilling_address
attributesrefunds
arrayoptionalrefunds
attributesshipping_address
objectnullableshipping_address
attributescustomer
objectnullablecustomer
attributesfulfillments
arrayfulfillments
attributesline_items
arrayThe linked Variants and quantities associated with this order.
line_items
attributestransactions
arrayoptionalAn array of Transactions linked to the order. Included if you pass the expand=transactions query parameter.
transactions
attributescreated_at
stringThe ISO 8601 timestamp that the order was created.
updated_at
stringThe ISO 8601 timestamp that the order was last updated.
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"cancelled_at": "2023-01-02T02:34:56.000Z",
"payment_status": "paid",
"status": "active",
"total_discount": 5,
"total_price": 37.34,
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"order_number": "12345",
"source_name": "web",
"total_line_items_price": 28,
"total_shipping": 12.34,
"total_shipping_discount": 0,
"total_tax": 2,
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"tracking_url": "ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1",
"title": "Rutter Shirt (Large)"
}
]
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"payment_method_type": "card",
"status": "success",
"type": "sale",
"amount": 31.99,
"gateway": "paypal",
"gateway_data": null,
"iso_currency_code": "USD",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z"
}
],
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
List Orders
GET /ordersThe /orders endpoint allows developers to receive user-authorized order data for a merchant's store.
Due to the potentially large number of orders associated with an Item, results are paginated. Manipulate the count and offset parameters in conjunction with the total_orders response body field to fetch all available transactions.
Request Parameters
access_token
stringqueryThe access token of the connection.
created_at_max
integeroptionalqueryThe Unix Timestamp in milliseconds maximum created_at datetime to fetch entities from.
created_at_min
integeroptionalqueryThe Unix Timestamp in milliseconds minimum created_at datetime to fetch entities from.
cursor
stringoptionalqueryThe cursor to use for pagination. This value is passed in from next_cursor
field in a previous request.
expand
enumoptionalqueryOptionally, include transaction information when fetching orders.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
fulfillment_status
enumoptionalqueryOptionally filter orders by their fulfillment_status
.
limit
integeroptionalqueryThe limit on the number of entities returned.
order_number
integeroptionalqueryOptionally filter by order number.
payment_status
enumoptionalqueryOptionally filters orders by payment_status
.
properties
stringoptionalqueryOptionally return only certain fields specified by a comma-separated list of field names. E.g. id,status
updated_at_max
integeroptionalqueryThe Unix Timestamp in milliseconds maximum updated_at datetime to fetch entities from.
updated_at_min
integeroptionalqueryThe Unix Timestamp in milliseconds minimum updated_at datetime to fetch entities from.
Response Body
The /orders
endpoint allows developers to receive user-authorized order data for a merchant's store.
Due to the potentially large number of orders associated with a connection, results are paginated.
connection
objectconnection
attributesorders
arrayorders
attributesnext_cursor
stringnullable{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY"
},
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"cancelled_at": "2023-01-02T02:34:56.000Z",
"payment_status": "paid",
"status": "active",
"total_discount": 5,
"total_price": 37.34,
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"order_number": "12345",
"source_name": "web",
"total_line_items_price": 28,
"total_shipping": 12.34,
"total_shipping_discount": 0,
"total_tax": 2,
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"tracking_url": "ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1",
"title": "Rutter Shirt (Large)"
}
]
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"payment_method_type": "card",
"status": "success",
"type": "sale",
"amount": 31.99,
"gateway": "paypal",
"gateway_data": null,
"iso_currency_code": "USD",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z"
}
],
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"next_cursor": null
}
Platform Differences
There can be some differences in field values due to platform-specific limitations or if the connection is missing required scopes.
Amazon
The total_price
will be unavailable through the Amazon API and 0 in the following scenarios:
- The order status is cancelled, pending , or unshipped. Cancelled orders do not have this info, whereas pending orders could later be updated to have price info.
- If the order is a replacement order, no price info is available.
- If the order is sold through Non-Amazon sales channel it may not have price info.
Shopify
Rutter supplements the Order object with the following properties from Shopify: name, cancelled_at, source_name, total_line_items_price, tags
Ebay
Rutter currently fetches 90 days worth of orders due to Ebay's own limitation.
Fetch an Order
GET /orders/:idRequest Parameters
id
stringpathThe Rutter generated unique ID of the object.
access_token
stringqueryThe access token of the connection.
expand
enumoptionalqueryOptionally, include transaction information when fetching orders.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
Response Body
The /orders/{id}
endpoint allows developers to receive user-authorized order data for a specific order in a merchant's store.
connection
objectconnection
attributesorder
nullableorder
attributes{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY"
},
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"cancelled_at": "2023-01-02T02:34:56.000Z",
"payment_status": "paid",
"status": "active",
"total_discount": 5,
"total_price": 37.34,
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"order_number": "12345",
"source_name": "web",
"total_line_items_price": 28,
"total_shipping": 12.34,
"total_shipping_discount": 0,
"total_tax": 2,
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"tracking_url": "ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1",
"title": "Rutter Shirt (Large)"
}
]
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"payment_method_type": "card",
"status": "success",
"type": "sale",
"amount": 31.99,
"gateway": "paypal",
"gateway_data": null,
"iso_currency_code": "USD",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z"
}
],
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
}
Create an Order
POST /ordersRequest Parameters
access_token
stringqueryThe access token of the connection.
Request Body
order
objectThe order to create.
order
attributesResponse Body
Companies that use Rutter can programmatically create orders on their storeowner's shops. To do this, make a POST request to our orders endpoint.
order
objectorder
attributes{
"order": {
"currency_code": "USD",
"line_items": [
{
"variant_id": "00000000-0000-0000-0000-000000000000",
"quantity": 1
},
{
"variant_id": "00000000-0000-0000-0000-000000000000",
"quantity": 2
}
],
"customer": {
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"email": "eric@rutter.com",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"email": "eric@rutter.com",
"phone": "1234567890"
}
}
}
{
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"cancelled_at": "2023-01-02T02:34:56.000Z",
"payment_status": "paid",
"status": "active",
"total_discount": 5,
"total_price": 37.34,
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"order_number": "12345",
"source_name": "web",
"total_line_items_price": 28,
"total_shipping": 12.34,
"total_shipping_discount": 0,
"total_tax": 2,
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"tracking_url": "ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1",
"title": "Rutter Shirt (Large)"
}
]
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"payment_method_type": "card",
"status": "success",
"type": "sale",
"amount": 31.99,
"gateway": "paypal",
"gateway_data": null,
"iso_currency_code": "USD",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z"
}
],
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
}
Update an Order
PATCH /orders/:idRequest Parameters
id
stringpathThe Rutter generated unique ID of the object.
access_token
stringqueryThe access token of the connection.
Request Body
order
objectorder
attributesResponse Body
The /orders/{id}
endpoint allows developers to receive user-authorized order data for a specific order in a merchant's store.
connection
objectconnection
attributesorder
nullableorder
attributes{
"order": {
"status": "cancelled"
}
}
{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY"
},
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"cancelled_at": "2023-01-02T02:34:56.000Z",
"payment_status": "paid",
"status": "active",
"total_discount": 5,
"total_price": 37.34,
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"order_number": "12345",
"source_name": "web",
"total_line_items_price": 28,
"total_shipping": 12.34,
"total_shipping_discount": 0,
"total_tax": 2,
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"postal_code": "94110",
"region": "CA",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"email": "eric@rutter.com",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"tracking_url": "ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1",
"title": "Rutter Shirt (Large)"
}
]
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"payment_method_type": "card",
"status": "success",
"type": "sale",
"amount": 31.99,
"gateway": "paypal",
"gateway_data": null,
"iso_currency_code": "USD",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z"
}
],
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
},
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"product_id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"price": 14,
"quantity": 1,
"iso_currency_code": "USD",
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"unit_cost": 14,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
}