Run in Apifox
A maximum of 100 SKUs are allowed when creating an order, and they must be products from the same supplier. If there are more than 50 SKUs or some special circumstances, multiple orders will be created at one time and multiple order numbers will be returned. Supports both large market and distribution scenarios. According to the current authorized user, distinguish the main and sub-accounts to place orders.
Request Body Params application/json
{
"appKey" : "" ,
"appSecret" : "" ,
"thirdOrderId" : "T20240708002" ,
"flow" : "general" ,
"message" : "备注信息测试" ,
"isvBizType" : "cross" ,
"addressParam" : {
"provinceText" : "浙江省" ,
"cityText" : "杭州市" ,
"areaText" : "滨江区" ,
"townText" : "长河镇" ,
"address" : "网商路699号" ,
"postCode" : "000000" ,
"fullName" : "张三" ,
"mobile" : "18888888888" ,
"phone" : "18888888888" ,
"districtCode" : "310107"
} ,
"cargoParamList" : [
{
"offerId" : 623686863670 ,
"specId" : "53a1eff0fa008b2b9f32a120b0a050f2" ,
"quantity" : 5
}
]
}
Request Code Samples
curl --location --request POST 'https://openapi.dajisaas.com/alibaba/trade/createCrossOrder' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "",
"appSecret": "",
"thirdOrderId": "T20240708002",
"flow": "general",
"message": "备注信息测试",
"isvBizType": "cross",
"addressParam": {
"provinceText": "浙江省",
"cityText": "杭州市",
"areaText": "滨江区",
"townText": "长河镇",
"address": "网商路699号",
"postCode": "000000",
"fullName": "张三",
"mobile": "18888888888",
"phone": "18888888888",
"districtCode": "310107"
},
"cargoParamList": [
{
"offerId": 623686863670,
"specId": "53a1eff0fa008b2b9f32a120b0a050f2",
"quantity": 5
}
]
}'
Responses application/json Generate Code
{
"code" : 200 ,
"message" : "操作成功" ,
"data" : {
"totalSuccessAmount" : 1196 ,
"orderId" : "2257164624870311973" ,
"success" : true ,
"code" : null ,
"message" : null ,
"accountPeriod" : null ,
"failedOfferList" : null ,
"postFee" : 300 ,
"orderList" : [ ]
} ,
"timestamp" : 1723619438689 ,
"traceId" : "307c881d5e6e"
}
Modified at 2025-05-28 03:27:17