Run in Apifox
Batch order payment interface, through which the payment of Taobao orders can be automatically completed, with a limited deduction of Alipay balance. When the Alipay balance is insufficient, the bound bank card balance will be deducted.
Request Body Params application/json
purchaseOrderIdList
array [integer]
required
{
"appKey" : "" ,
"appSecret" : "" ,
"purchaseOrderIdList" : [ 200049919063 ]
}
Request samples curl --location --request POST 'https://openapi.dajisaas.com/taobao/purchase/order/batch/pay' \
--header 'Content-Type: application/json' \
--data-raw '{
"appKey": "",
"appSecret": "",
"purchaseOrderIdList": [200049919063]
}'
Responses application/json Generate Code
{
"code" : 200 ,
"message" : "操作成功" ,
"data" : {
"code" : "0" ,
"data" : {
"payFailurePurchaseOrderIds" : null ,
"willPayPurchaseOrderIds" : [
200049970162
] ,
"payFailedResults" : null
} ,
"success" : true ,
"requestId" : "2102fb2e17231998633621798" ,
"errorCode" : null ,
"errorMsg" : null
} ,
"timestamp" : 1723199866810 ,
"traceId" : "80568f398ca7"
}
Modified at 2024-08-13 06:53:03