curl --request POST \
--url https://api.example.com/orders \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"productId": "<string>",
"count": 123,
"itemPrice": 123
}
],
"address": {
"province": "<string>",
"city": "<string>",
"detail": "<string>"
}
}
'