{
"status": 200,
"message": "Create order successfully!",
"result": {
"order_id": "PWW1222366-11",
"updated_at": "2022-01-22 10:04:13",
"order_items": [
{
"pw_id": 192348,
"product_name": "Product new item test 1",
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"unfulfill_quantity": 1
},
{
"pw_id": 192349,
"product_name": "Product new item test 2",
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"unfulfill_quantity": 5
}
]
}
}
{
"status": 400,
"message": "Error! Invalid Order Items.",
"result": {
"data_error": [
{
"item_sku": "Invalid item sku : PW-MALORM-DEFAULTSIZE-PACK1. Not found this sku."
},
{
"item_sku": "Invalid item sku : PW-MALORM-DEFAUL-PACK1-ONESIDE. Not found this sku."
}
]
}
}
{
"status": 401,
"message": "Not authenticated"
}
Data item in order_items
:
product_name (String
) : Item name / Required
variant_title (String
) : Variant Title / Required
item_sku (String) : SKU in our system / Required
unfulfill_quantity (Number
) : Item quantity / Required
artwork_front (url
) : Link artwork front / Optional
artwork_back (url
) : Link artwork back / Optional
url_mockup (url
) : Link Mockup / Optional
variant_note (String
) : Item Note / Optional
// Data order items example:
"order_items": [
{
"product_name" : "Product new item test 1",
"variant_title": "DEFAULTSIZE / PACK1 / ONESIDE",
"unfulfill_quantity": 1,
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"artwork_front" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"artwork_back" : "",
"url_mockup" : "",
"variant_note": "test"
},
{
"product_name" : "Product new item test 2",
"variant_title": "DEFAULTSIZE / PACK1 / ONESIDE",
"unfulfill_quantity": 5,
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"artwork_front" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"artwork_back" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"url_mockup" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"variant_note": "test"
}
]
// Data send order example:
{
"order_id": "PWW1211112",
"shipping_name": "American Auth",
"shipping_phone": "+(807) 939 3211",
"shipping_email": "localce12@gmail.com",
"shipping_address1": "12 Adobe N Auth",
"shipping_address2": "",
"shipping_city": "Altamonte Springs",
"shipping_zip": "15750",
"shipping_province": "Florida",
"shipping_province_code": "FL",
"shipping_country": "United States",
"shipping_country_code": "US",
"order_items": [
{
"product_name" : "Product new item test 1",
"variant_title": "DEFAULTSIZE / PACK1 / ONESIDE",
"unfulfill_quantity": 1,
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"artwork_front" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"artwork_back" : "",
"url_mockup" : "",
"variant_note": "test"
},
{
"product_name" : "Product new item test 2",
"variant_title": "DEFAULTSIZE / PACK1 / ONESIDE",
"unfulfill_quantity": 5,
"item_sku": "PW-MALORM-DEFAULTSIZE-PACK1-ONESIDE",
"artwork_front" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"artwork_back" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"url_mockup" : "https://aws-test-printway.s3.ap-southeast-1.amazonaws.com/1002318-0-1633669018925.png",
"variant_note": "test"
}
]
}