curl --request GET \
--url https://api.quicko.com/advisory/contacts/{contact_id}/orders/{order_id} \
--header 'Authorization: <authorization>' \
--header 'x-api-key: <x-api-key>'{
"timestamp": 1718366608003,
"transaction_id": "1fb772eb-83f8-4b23-ae3d-9cea86e3a059",
"data": {
"@entity": "com.quicko.advisory.order",
"id": "0225636CE4",
"status": "confirmed",
"created_at": 1717480715227,
"order_time": 1717480715227,
"updated_at": 1717480729031,
"total_price": 5308.82,
"discount": 0,
"sub_total": 4499,
"gst_amount": 809.82,
"price_including_gst": false
},
"code": 200
}API to get the details of the order
curl --request GET \
--url https://api.quicko.com/advisory/contacts/{contact_id}/orders/{order_id} \
--header 'Authorization: <authorization>' \
--header 'x-api-key: <x-api-key>'{
"timestamp": 1718366608003,
"transaction_id": "1fb772eb-83f8-4b23-ae3d-9cea86e3a059",
"data": {
"@entity": "com.quicko.advisory.order",
"id": "0225636CE4",
"status": "confirmed",
"created_at": 1717480715227,
"order_time": 1717480715227,
"updated_at": 1717480729031,
"total_price": 5308.82,
"discount": 0,
"sub_total": 4499,
"gst_amount": 809.82,
"price_including_gst": false
},
"code": 200
}0000