Skip to content

通过申请单ID查询申请状态

电商平台通过查询申请状态API查询二级商户入驻申请结果。

请求参数类型描述
applyment_idnumber微信支付申请单号
php
$instance->v3->ecommerce->applyments->_applyment_id_->getAsync([
  'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/ecommerce/applyments/{applyment_id}')->getAsync([
  'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/ecommerce/applyments/{applyment_id}']->getAsync([
  'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->ecommerce->applyments->_applyment_id_->get([
  'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/ecommerce/applyments/{applyment_id}')->get([
  'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/ecommerce/applyments/{applyment_id}']->get([
  'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
applyment_statestring申请状态
applyment_state_descstring申请状态描述
sign_urlstring签约链接
sub_mchidstring电商平台二级商户号
account_validationobject汇款账户验证信息
account_namestring付款户名
account_nostring付款卡号
pay_amountnumber汇款金额
destination_account_numberstring收款卡号
destination_account_namestring收款户名
destination_account_bankstring开户银行
citystring省市信息
remarkstring备注信息
deadlinestring汇款截止时间
audit_detailobject[]驳回原因详情
param_namestring参数名称
reject_reasonstring驳回原因
legal_validation_urlstring法人验证链接
out_request_nostring业务申请编号
applyment_idnumber微信支付申请单号
sign_statestring签约状态
UNSIGNED | SIGNED | NOT_SIGNABLE 枚举值之一

参阅 官方文档 官方文档

Published on the GitHub by TheNorthMemory