Module configuration on the resource side should allow to produce export of orders within a specified time range - FROM and TILL the established date.
History: Employee of the resource produces export of orders, specifying the desired time range of order creation
Transmission method: POST
Format: JSON
URL: /api/events/historyStructure:
{
"orders": [
{
"customer": {
"customer_id": string ,
"customer_first_name": string ,
"customer_last_name": string ,
"customer_email": string ,
"customer_date_created": string
},
"order_id": string ,
"date_created": string ,
"status": string ,
"price_total": string ,
"qty_total": integer ,
"products": [
{
"product_id": string ,
"product_name": string ,
"product_desc": string ,
"product_sku": string ,
"product_image": string ,
"product_url": string ,
"product_qty": integer ,
"product_price": integer ,
"product_total_val": integer ,
"product_categories": [
string,
string,
…
]
},
{
...
}
]
}
]
} |
Example:
{
"orders": [
{
"customer": {
"customer_id": "189",
"customer_first_name": "Kristina",
"customer_last_name": "Test",
"customer_email": "pr.triggmine@gmail.com",
"customer_date_created": "2016-09-08 10:20:37"
},
"order_id": "246",
"date_created": "2016-10-08 10:20:37",
"status": "pending",
"price_total": "455.00",
"qty_total": "1",
"products": [
{
"product_id": "406",
"product_name": "Linen Blazer",
"product_desc": "Single vented, notched lapels. Flap pockets. Tonal stitching. Fully lined. Linen. Dry clean.",
"product_sku": "msj013",
"product_image": "https://1924magento.triggmine.com.ua/media/catalog/product/cache/0/image/265x/9df78eab33525d08d6e5fb8d27136e95/m/s/msj012t_2.jpg",
"product_url": "https://1924magento.triggmine.com.ua/index.php/catalog/product/view/id/406/s/linen-blazer/",
"product_qty": 1,
"product_price": 455,
"product_total_val": "455.0000",
"product_categories": [
"Men",
"New Arrivals",
"Blazers"
]
},
{
"product_id": "244",
"product_name": "Linen Blazer",
"product_desc": "Single vented, notched lapels. Flap pockets. Tonal stitching. Fully lined. Linen. Dry clean.",
"product_sku": "msj013",
"product_image": "https://1924magento.triggmine.com.ua/media/catalog/product/cache/0/image/265x/9df78eab33525d08d6e5fb8d27136e95/m/s/msj012t_1.jpg",
"product_url": "https://1924magento.triggmine.com.ua/index.php/catalog/product/view/id/244/s/linen-blazer/",
"product_qty": 1,
"product_price": 455,
"product_total_val": "0.0000",
"product_categories": [
"Blazers"
]
}
]
}
]
} |