Data Type: Order
Parameter | Type | Description | Required/Optional | Notes |
---|---|---|---|---|
order_id | String | Order ID | required | |
order_create_time | String | Create Time of the Order | required | ISO 8601, format YYYY-MM-DDTHH:mm:ss.sssZ, example: 2021-10-12T14:20:50.521+07:00 |
merchandise_list | Array | Merchandise List | optional (strongly recommended) | |
Merchandise | Merchandise Information | optional (strongly recommended) | ||
amount | Amount | Order Total Amount | required | |
shipping | Shipping | Shipping Information | optional (strongly recommended) |
{
"order_id": "NX348566DIHD",
"order_create_time": "2021-10-12T14:25:50.521+07:00",
"merchandise_list": [
{
"merchandise_id": "NFH837824432",
"category_1": "3c",
"category_2": "phone",
"category_3": "android",
"name": "huawei phone",
"count": 1,
"unit_price": {
"currency": "USD",
"amount_local": 1000,
"amount_usd": 1000,
"amount_cny": 6800
}
}
],
"amount": {
"currency": "USD",
"amount_local": 1000,
"amount_usd": 1000,
"amount_cny": 6800
},
"shipping": {
"address": {
"country": "FR",
"region": "Grand Est",
"city": "Strasbourg City",
"district": "Ketali Lorem",
"detail": "3213 Building,lorem Street",
"zip_code": "310000"
},
"phone": {
"country_code": 1,
"phone_number": "18700001112"
},
"email": "[email protected]",
"consignee": {
"first_name": "Pierre",
"middle_name": "",
"last_name": "Laurent",
"nickname": "Snochy"
},
"method": "logistics"
}
}