curl 'https://api.personaclick.com/sync/orders' \
-X 'POST' \
-H 'content-type: application/json' \
--data-binary '@data.json'
# data.json
{
"shop_id":"0d42fd8b713d0752776ca589cc0056",
"shop_secret":"0123456789abcdef0123456789abcdef",
"orders":[
{
"id":"ORDER_ID_1",
"status":"Delivered",
"channel":"website",
"date":1626344304,
"offline":false,
"email":"john.doe@examplemail.com",
"phone":"4400114527199",
"loyalty_id":"000001234567",
"location_id":"NY",
"promocode":"vxawxSi9Uy",
"delivery_type":"courier",
"delivery_address":"146, Somewhere Ave, NY",
"delivery_date":"2021-08-21",
"delivery_time":"00:01",
"value":{
"total":212.13,
"cash":190,
"bonuses":27,
"delivery":20,
"discount":24.87
},
"items":[
{
"id":"ITEM-ID-1",
"price":205,
"quantity":1
},
{
"id":"ITEM-ID-2",
"price":3,
"quantity":4
}
]
},
{
"id":"ORDER_ID_2",
"status":"Delivered",
"channel":"website",
"date":1626344414,
"offline":false,
"email":"peter.parker@examplemail.com",
"phone":"4400145291711",
"loyalty_id":"000000001",
"location_id":"NY",
"promocode":"vxawxSi9Uy",
"delivery_type":"courier",
"delivery_address":"Forest Hills, Queens",
"delivery_date":"2021-07-20",
"delivery_time":"10:01",
"value":{
"total":211.13,
"cash":190,
"bonuses":27,
"delivery":20,
"discount":24.87
},
"items":[
{
"id":"ITEM-ID-3",
"price":204,
"quantity":1
},
{
"id":"ITEM-ID-4",
"price":3,
"quantity":4
}
]
}
]
}