curl -i -X POST \
https://stallionexpress.redocly.app/_mock/stallionexpress-v4/orders \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"store_id": "1234",
"name": "Pramod Thomson",
"company": "string",
"address1": "30 Clearview Dr",
"address2": "string",
"city": "Rock Springs",
"province_code": "WY",
"postal_code": "82901",
"country_code": "US",
"phone": "string",
"email": "string",
"customer_id": "string",
"carrier_code": "string",
"postage_code": "string",
"package_code": "string",
"note": "string",
"weight_unit": "lbs",
"weight": 0.6,
"value": 10.5,
"currency": "CAD",
"order_id": "1234-1233",
"order_at": "2023-09-26 14:30:00",
"store": "My Shopify Store",
"items": [
{
"item_id": 1234,
"title": "Cool T-Shirt",
"sku": "SKU123",
"hs_code": "620800",
"quantity": 1,
"value": 10,
"currency": "CAD",
"country_of_origin": "CN",
"warehouse_location": "Warehouse A"
}
],
"tags": "['\''this is a tag'\'', '\''this is another tag'\'']"
}'