curl --location -g --request POST '{{baseURL}}/admin/draft-orders' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"region_id": "string",
"customer_id": "string",
"no_notification_order": true,
"status": "open",
"metadata": {},
"discounts": [
{
"code": "string"
}
],
"shipping_methods": [
{
"option_id": "string",
"data": {},
"price": 0
}
],
"items": [
{
"variant_id": "string",
"unit_price": 0,
"title": "string",
"quantity": 0,
"metadata": {}
}
],
"billing_address": {
"first_name": "Arno",
"last_name": "Willms",
"phone": 16128234334802,
"company": "string",
"address_1": "14433 Kemmer Court",
"address_2": "Suite 369",
"city": "South Geoffreyview",
"province": "Kentucky",
"postal_code": 72093,
"country_code": "st",
"metadata": {
"car": "white"
}
},
"shipping_address": {
"first_name": "Arno",
"last_name": "Willms",
"phone": 16128234334802,
"company": "string",
"address_1": "14433 Kemmer Court",
"address_2": "Suite 369",
"city": "South Geoffreyview",
"province": "Kentucky",
"postal_code": 72093,
"country_code": "st",
"metadata": {
"car": "white"
}
}
}'