- 接入指南
- Integration Guidelines
- 附录
- Appendix
- 用户入网(User Onboarding)
- 持有人(Card Holder)
- 开卡(Virtual Account)
- 外贸收款(B2B)
- 电商收款(B2C)
- 申请收款卡(Virtual Account Apply for B2C)
- 获取收款卡平台配置(Platform Query for B2C)
- 获取开通收款卡持有人(Card Holder Query for B2C)
- 查询开卡数(Card number Query for B2C)
- 绑定/添加店铺(Bind/Unbind Shop for B2C)
- 注销收款卡((Card Cancel for B2C))
- 查询收款卡详情(Card Detail Query for B2C)
- 注销收款卡结果通知(Card Cancel Result Notify for B2C)
- 查询店铺(Shop Query for B2C)
- 查询收款卡(Card Query for B2C)
- 绑定/添加店铺结果通知(Shop Bind/Unbind/Add Result Notify for B2C)
- 申请银行证明信(Bank Letter Apply For B2C)
- 申请收款卡结果通知(Virtual Account Notify for B2C)POST
- 收款(Collections)
- 订单(Order)
- 提现(Payout)
- 申请提现/付款(Payout Apply)POST
- 确认提现/付款(Payout Confirm)POST
- 申请提现/付款结果通知(Payout Result Notify)POST
- 查询汇率(Rate Inquiry)POST
- 查询受益人银行账户字段信息(Beneficiary Account Fields Query)POST
- 绑定受益人银行账户(Benificiary Account Apply)POST
- 绑定受益人银行账户结果通知(Benificiary Account Result Notify)POST
- 删除受益人银行账户(Benificiary Account Delete)POST
- 查询支持的受益人银行账户国家/地区(Beneficiary Account Country Query)POST
- 支付(Pay)
- 钱包(Wallet)
- 交易查询(Trade Query)
- 补充资料(ReMaterials)
- Connectivity
- Mock
订单详情(Trade Order Query Detail for B2B)
POST
tradeOrderDetail
Request
Body Params application/json
orderId
string
required
userId
string
用户ID
Example
{
"orderId": "string",
"userId": "string"
}
Responses
🟢200成功
application/json
Body
orderId
string
订单ID
userId
string
用户ID
totalAmount
string
订单总额
country
string
贸易国家/地区
currency
string
币种
payType
enum<string>
支付方式
Allowed values:
ADVANCE_REMAINING_PAYMENTFULL_PAYMENT
advanceAmount
number <double>
预付款金额
remainingAmount
number <double>
尾款金额
buyerEnglishName
string
买家英文名
orderNo
string
订单编号
status
enum<string>
订单状态
Allowed values:
INITPAYEEPROCESSINGAUDITINGCLOSED
orderDelivery
object
发货信息
deliveryDate
string
发货日期
logisticsNumber
string
物流单号
logisticsCompany
string
物流公司
expectDeliveryDate
string
预计发货日期
isNewBuyer
enum<string>
是否新买家
Allowed values:
YN
alreadyDelivery
enum<string>
是否已发货
Allowed values:
YN
tradeType
enum<string>
交易方式
Allowed values:
EXWFCAFASFOBCFRCIFCPTCIPDAFDESDEQDDUDDO
deliveryCredentials
array [object {2}]
发货凭证
tradeCredentials
array[object (StorageFile) {3}]
交易凭证
buyerCommunicationRecords
array[object (StorageFile) {3}]
买家沟通记录
deliveryCommunicationRecords
array[object (StorageFile) {3}]
货运安排沟通记录
orderCommodity
object
商品信息
englishName
string
商品英文名
name
string
商品中文名
shopUrl
string
店铺地址
unit
string
单位
quantity
integer
数量
commodityType
enum<string>
商品类型
Allowed values:
ELECTRONICSFOODSCLOTHINGOFFICEBAGSTOYHAIRDRESSINGARTWORKHOMEIRONWAREDAILYFITNESSOTHER
memo
string
备注
otherAttachments
array[object (StorageFile) {3}]
其他附件
fileId
string
文件ID
<= 32 characters
fileName
string
文件名
<= 255 characters
fileUrl
string
文件地址
<= 255 characters
invoiceAttachments
array[object (StorageFile) {3}]
发票附件
fileId
string
文件ID
<= 32 characters
fileName
string
文件名
<= 255 characters
fileUrl
string
文件地址
<= 255 characters
payeeBindingAmount
number <double>
(收款)关联中金额
payeeUnBindAmount
number <double>
(收款)待关联金额
orderTime
string
订单时间
Example
{
"orderId": "123456",
"userId": "USER123",
"totalAmount": {
"currency": "USD",
"amount": 1000
},
"country": "USA",
"currency": "USD",
"payType": "CREDIT_CARD",
"advanceAmount": {
"currency": "USD",
"amount": 200
},
"remainingAmount": {
"currency": "USD",
"amount": 800
},
"buyerEnglishName": "John Doe",
"orderNo": "ORD123456",
"status": "CONFIRMED",
"orderDelivery": {
"deliveryDate": "2024-05-21",
"deliveryNo": "DEL123456",
"company": "Logistics Company"
},
"orderCommodity": {
"commodityName": "商品中文名",
"commodityEnglishName": "Commodity English Name",
"quantity": 100,
"unit": "pcs"
},
"memo": "This is a memo",
"otherAttachments": [
{
"fileName": "other_attachment1.pdf",
"url": "http://example.com/other_attachment1.pdf"
},
{
"fileName": "other_attachment2.pdf",
"url": "http://example.com/other_attachment2.pdf"
}
],
"invoiceAttachments": [
{
"fileName": "invoice1.pdf",
"url": "http://example.com/invoice1.pdf"
},
{
"fileName": "invoice2.pdf",
"url": "http://example.com/invoice2.pdf"
}
],
"isExchangeUsage": "YES",
"payeeBindingAmount": {
"currency": "USD",
"amount": 300
},
"payeeUnBindAmount": {
"currency": "USD",
"amount": 100
},
"withdrawAmount": {
"currency": "USD",
"amount": 500
},
"createTime": "2024-05-21 10:00:00",
"orderTime": "2024-05-21 14:30:00",
"platform": "Amazon"
}
Modified at 2024-10-14 01:13:39