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.
status
enumThe status of the order.
payment_status
enumThe payment status of the order.
fulfillment_status
enumnullableThe status of the fulfillment for the order.
line_items
arrayThe linked Variants and quantities associated with this order.
line_items
attributesbilling_address
objectnullablebilling_address
attributesshipping_address
objectnullableshipping_address
attributescustomer
objectnullablecustomer
attributestotal_shipping
numbernullableThe sum of all shipping costs.
total_discount
numberThe sum of all discounts applied to the total price.
total_tax
numbernullableThe total tax paid on the order.
total_price
numberThe total price of the order.
iso_currency_code
stringnullableThe ISO 4217 currency code of the order.
created_at
stringThe ISO 8601 timestamp that the order was created.
updated_at
stringThe ISO 8601 timestamp that the order was last updated.
fulfillments
arrayfulfillments
attributestransactions
arrayoptionalAn array of Transactions linked to the order. Included if you pass the expand=transactions query parameter.
transactions
attributesplatform_id
stringoptionalThe platform specific ID of the order.
order_number
stringoptionalThe merchant facing order ID.
total_shipping_discount
numberoptionalThe sum of all discounts on shipping applied to the total price.
refunds
arrayoptionalrefunds
attributesname
stringoptionalThe name of the order. Supported for SHOPIFY
only.
cancelled_at
stringoptionalThe ISO 8601 timestamp that the order was cancelled. SHOPIFY
only.
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.
tags
arrayoptionalThe tags of the order. Supported for SHOPIFY
only.
String array.
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"order_number": "12345",
"status": "active",
"payment_status": "paid",
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"total_shipping": 12.34,
"total_discount": 5,
"total_tax": 2,
"total_price": 37.34,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_shipping_discount": 0,
"cancelled_at": "2023-01-02T02:34:56.000Z",
"source_name": "web",
"total_line_items_price": 28,
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_url": "ABCDEFGH1234567890",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"title": "Rutter Shirt (Large)",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1"
}
]
}
],
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"barcode": "57113",
"vendor": "Hudson, Conroy and Stark",
"name": "Handmade Soft Cheese"
},
{
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"barcode": "88523",
"vendor": "Zieme Group",
"name": "Unbranded Wooden Bacon"
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"gateway": "paypal",
"type": "sale",
"amount": 31.99,
"iso_currency_code": "USD",
"status": "success",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z",
"payment_method_type": "card",
"gateway_data": null
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com",
"phone": "1234567890",
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
}
List Orders
GET /ordersRequest 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
orders
A list of ordersorders
attributesconnection
Connectionconnection
attributesnext_cursor
stringnullable{
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"order_number": "12345",
"status": "active",
"payment_status": "paid",
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"total_shipping": 12.34,
"total_discount": 5,
"total_tax": 2,
"total_price": 37.34,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_shipping_discount": 0,
"cancelled_at": "2023-01-02T02:34:56.000Z",
"source_name": "web",
"total_line_items_price": 28,
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_url": "ABCDEFGH1234567890",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"title": "Rutter Shirt (Large)",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1"
}
]
}
],
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"barcode": "57113",
"vendor": "Hudson, Conroy and Stark",
"name": "Handmade Soft Cheese"
},
{
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"barcode": "88523",
"vendor": "Zieme Group",
"name": "Unbranded Wooden Bacon"
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"gateway": "paypal",
"type": "sale",
"amount": 31.99,
"iso_currency_code": "USD",
"status": "success",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z",
"payment_method_type": "card",
"gateway_data": null
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com",
"phone": "1234567890",
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
}
],
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY",
"orgId": "00000000-0000-0000-0000-000000000000"
},
"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
order
nullableorder
attributesconnection
Connectionconnection
attributes{
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"order_number": "12345",
"status": "active",
"payment_status": "paid",
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"total_shipping": 12.34,
"total_discount": 5,
"total_tax": 2,
"total_price": 37.34,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_shipping_discount": 0,
"cancelled_at": "2023-01-02T02:34:56.000Z",
"source_name": "web",
"total_line_items_price": 28,
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_url": "ABCDEFGH1234567890",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"title": "Rutter Shirt (Large)",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1"
}
]
}
],
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"barcode": "57113",
"vendor": "Hudson, Conroy and Stark",
"name": "Handmade Soft Cheese"
},
{
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"barcode": "88523",
"vendor": "Zieme Group",
"name": "Unbranded Wooden Bacon"
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"gateway": "paypal",
"type": "sale",
"amount": 31.99,
"iso_currency_code": "USD",
"status": "success",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z",
"payment_method_type": "card",
"gateway_data": null
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com",
"phone": "1234567890",
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
},
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY",
"orgId": "00000000-0000-0000-0000-000000000000"
}
}
Create an Order
POST /ordersRequest Parameters
access_token
stringqueryThe access token of the connection.
Request Body
order
objectThe order to create.
order
attributesResponse Body
order
Orderorder
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
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"email": "eric@rutter.com"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890",
"email": "eric@rutter.com"
},
"customer": {
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com"
}
}
}
{
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"order_number": "12345",
"status": "active",
"payment_status": "paid",
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"total_shipping": 12.34,
"total_discount": 5,
"total_tax": 2,
"total_price": 37.34,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_shipping_discount": 0,
"cancelled_at": "2023-01-02T02:34:56.000Z",
"source_name": "web",
"total_line_items_price": 28,
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_url": "ABCDEFGH1234567890",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"title": "Rutter Shirt (Large)",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1"
}
]
}
],
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"barcode": "57113",
"vendor": "Hudson, Conroy and Stark",
"name": "Handmade Soft Cheese"
},
{
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"barcode": "88523",
"vendor": "Zieme Group",
"name": "Unbranded Wooden Bacon"
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"gateway": "paypal",
"type": "sale",
"amount": 31.99,
"iso_currency_code": "USD",
"status": "success",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z",
"payment_method_type": "card",
"gateway_data": null
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com",
"phone": "1234567890",
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
],
"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
order
nullableorder
attributesconnection
Connectionconnection
attributes{
"order": {
"status": "cancelled"
}
}
{
"order": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"order_number": "12345",
"status": "active",
"payment_status": "paid",
"fulfillment_status": "unfulfilled",
"iso_currency_code": "USD",
"total_shipping": 12.34,
"total_discount": 5,
"total_tax": 2,
"total_price": 37.34,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_shipping_discount": 0,
"cancelled_at": "2023-01-02T02:34:56.000Z",
"source_name": "web",
"total_line_items_price": 28,
"fulfillments": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"carrier": "UPS",
"service": "manual",
"tracking_url": "ABCDEFGH1234567890",
"tracking_number": "https://www.ups.com/WebTracking?loc=en_US&requester=ST&trackNums=ABCDEFGH1234567890",
"line_items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"variant_id": "00000000-0000-0000-0000-000000000000",
"product_id": "00000000-0000-0000-0000-000000000000",
"title": "Rutter Shirt (Large)",
"price": 12.34,
"quantity": 2,
"sku": "RUTTER-1"
}
]
}
],
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Soft-Table-872793",
"title": "Handcrafted-Practical Wooden Towels",
"barcode": "57113",
"vendor": "Hudson, Conroy and Stark",
"name": "Handmade Soft Cheese"
},
{
"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,
"unit_cost": 14,
"iso_currency_code": "USD",
"fulfillment_service": "manual",
"inventory_management": "shopify",
"quantity": 1,
"inventory": {
"locations": [],
"total_count": 1
},
"requires_shipping": true,
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"total_discount": 0,
"sku": "Intelligent-Wooden-Salad-164653",
"title": "Incredible-Tasty Fresh Pants",
"barcode": "88523",
"vendor": "Zieme Group",
"name": "Unbranded Wooden Bacon"
}
],
"transactions": [
{
"id": "00000000-0000-0000-0000-000000000000",
"order_id": "00000000-0000-0000-0000-000000000000",
"gateway": "paypal",
"type": "sale",
"amount": 31.99,
"iso_currency_code": "USD",
"status": "success",
"created_at": "2023-02-01T05:21:24.000Z",
"updated_at": "2023-02-01T05:21:24.000Z",
"payment_method_type": "card",
"gateway_data": null
}
],
"shipping_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"billing_address": {
"address1": "123 Rutter Road",
"address2": "Floor 4",
"city": "San Francisco",
"postal_code": "94110",
"region": "CA",
"country_code": "USA",
"first_name": "Eric",
"last_name": "Yu",
"phone": "1234567890"
},
"customer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"first_name": "Eric",
"last_name": "Yu",
"email": "eric@rutter.com",
"phone": "1234567890",
"orders": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
],
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z"
}
},
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"platform": "SHOPIFY",
"orgId": "00000000-0000-0000-0000-000000000000"
}
}