curl --request POST \
--url http://api.poderp.com/api/openapi/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"uniqueRequestId": "<string>",
"orderItems": [
{
"orderNo": "<string>",
"recipient": {
"receiverName": "<string>",
"country": "<string>",
"state": "<string>",
"city": "<string>",
"postcode": "<string>",
"address1": "<string>",
"phone": "<string>",
"remark": "<string>",
"email": "[email protected]"
},
"product": {
"spu": "<string>",
"size": "<string>",
"color": "<string>",
"quantity": 123
},
"imageUrls": []
}
]
}
'