Skip to content

订单附加信息提交接口

以下为财付通的海关备案信息,财付通10位海关注册编码 4403169D3W

请求参数类型描述
noncelesstrue声明请求的XML无随机字符串参数
xmlobject声明请求的XML数据结构
appidstring公众账号ID
mch_idstring商户号
out_trade_nostring商户订单号
transaction_idstring微信支付订单号
customsstring海关
GUANGZHOU_ZS | HANGZHOU_ZS | NINGBO | ZHENGZHOU_BS | CHONGQING | SHANGHAI_ZS | SHENZHEN | ZHENGZHOU_ZH_ZS | TIANJIN 枚举值之一
mch_customs_nostring商户海关备案号
dutyinteger关税
action_typestring报关类型
ADD | MODIFY 枚举值之一
sub_order_nostring商户子订单号
fee_typestring币种
order_feeinteger应付金额
transport_feeinteger物流费
product_feeinteger商品价格
cert_typestring证件类型
IDCARD 枚举值
cert_idstring证件号码
namestring姓名
php
$instance->v2->cgiBin->mch->customs->customdeclareorder->postAsync([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/cgi-bin/mch/customs/customdeclareorder')->postAsync([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/cgi-bin/mch/customs/customdeclareorder']->postAsync([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->cgiBin->mch->customs->customdeclareorder->post([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/cgi-bin/mch/customs/customdeclareorder')->post([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/cgi-bin/mch/customs/customdeclareorder']->post([
  'nonceless' => true,
  'xml' => [
    'appid'          => 'wxd678efh567hg6787',
    'mch_id'         => '1230000109',
    'out_trade_no'   => '20150806125346',
    'transaction_id' => '1000320306201511078440737890',
    'customs'        => 'SHANGHAI',
    'mch_customs_no' => '123456',
    'duty'           => '888',
    'action_type'    => 'ADD',
    'sub_order_no'   => '20150806125346',
    'fee_type'       => 'CNY',
    'order_fee'      => '888',
    'transport_fee'  => '888',
    'product_fee'    => '888',
    'cert_type'      => 'IDCARD',
    'cert_id'        => '330821198809085211',
    'name'           => '张三',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回信息
sign_typestring签名类型
MD5 枚举值
signstring签名
appidstring公众账号ID
mch_idstring商户号
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误代码描述
statestring状态码
NDECLARED | SUBMITTED | PROCESSING | SUCCESS | FAIL | EXCEPT 枚举值之一
transaction_idstring微信支付订单号
out_trade_nostring商户订单号
sub_order_nostring商户子订单号
sub_order_idstring微信子订单号
modify_timestring最后更新时间
cert_check_resultstring订购人和支付人身份信息校验结果
UNCHECKED | SAME | DIFFERENT 枚举值之一
verify_departmentstring验核机构注:商户需将该字段取值UNIONPAY/NETSUNION/OTHERS映射至海关verDept字段的1/2/3
UNIONPAY | NETSUNION | OTHERS 枚举值之一
verify_department_trade_idstring验核机构交易流水号

参阅 官方文档

Published on the GitHub by TheNorthMemory