curl --location --request POST 'https://api.storyous.com/delivery/orders/5a75b658f60a3c15009312f1-5a75b658f60a3c15009312f2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"externalId": "someOrderId",
"deliveryType": "",
"timing": {
"asSoonAsPossible": false,
"requestedDeliveryTime": "2016-01-01T13:30:00Z",
"requestedPickupTime": "2016-01-01T13:30:00Z",
"autoDeclineAfter": "2016-01-01T13:10:00Z"
},
"customer": {
"name": "John Doe",
"deliveryAddress": "Myslíkova 31, Praha 2",
"deliveryAddressParts": {
"street": "Přeloučská",
"streetNumber": "13",
"city": "Praha",
"country": "Czech republic",
"countryCode": "CZ",
"zip": "18600",
"latitude": 3.67865,
"longitude": -12.67865
},
"phoneNumber": "+420 777 123 456",
"email": "john.doe@gmail.com"
},
"alreadyPaid": false,
"originalOrderProvider": "someproviderName",
"paymentAlreadyFiscalized": false,
"deliveryProvider": "null",
"items": [
{
"itemId": "123",
"count": 1,
"unitPriceWithVat": 199.5,
"note": "extra cheese",
"additions": [
{
"additionId": "123abc",
"countPerMainItem": 1,
"unitPriceWithVat": 199.5
}
]
}
],
"note": "Lorem Ipsum",
"deliveryNote": "Leave it before the doors",
"discountWithVat": 199.5,
"deliveryFeeWithVat": 199.5,
"packageFeeWithVat": 69.2,
"serviceFeeWithVat": 199.5,
"deskId": "1234",
"checkId": "1234",
"tipWithVat": 33.4,
"autoConfirm": true,
"notification": {
"confirm": "https://your-service.com/api/storyous-order/999/confirm",
"dispatch": "https://your-service.com/api/storyous-order/999/dispatch",
"decline": "https://your-service.com/api/storyous-order/999/decline"
}
}'