Ordoro Post V3 Order is an example object payload from Ordoro, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"description": "Create an Order",
"method": "POST",
"path": "/v3/order",
"contentType": "application/json",
"example": {
"example": {
"value": {
"order_id": "i-want-my-order-1234",
"cart": 100,
"cart_order_id": "this-is-from-the-cart-1234",
"order_date": "2015-12-09T12:01:00.855700",
"shipping_address": {
"name": "joe schmo",
"street1": "123 foo-bar ln",
"city": "austin",
"state": "tx",
"zip": "78701",
"country": "USA",
"phone": "8675309",
"email": "jenny@igotyournumber.com"
},
"billing_address": {
"name": "joe schmo",
"street1": "123 foo-bar ln",
"city": "austin",
"state": "tx",
"zip": "78701",
"country": "USA",
"phone": "4592222",
"email": "mrgattispizza@delivers.com"
},
"lines": [
{
"cart_orderitem_id": "abc.123",
"quantity": 2,
"item_price": 2.42,
"total_price": 4.84,
"product": {
"sku": "sku1",
"name": "special product name",
"price": 2.42,
"weight": 1,
"taxable": "false",
"cost": 1.21,
"amazon_extra_info": {
"pending_quantity": 4,
"listing_id": "12356",
"asin": "55555"
}
}
},
{
"cart_orderitem_id": "abc.456",
"quantity": 1,
"item_price": 1.23,
"total_price": 1.23,
"product": {
"sku": "sku2",
"name": "Plastic Toy",
"price": 1.23,
"weight": 2,
"taxable": "false",
"cost": 3.45
}
}
],
"tags": [
{
"text": "Unpaid",
"color": "#FFFFFF"
},
{
"text": "Alert",
"color": "#C0C0C0"
}
],
"product_amount": 100.1,
"tax_amount": 1.23,
"grand_total": 123.45
}
}
}
}