微信支付提现申请单号查询提现申请单状态
微信支付提现申请单号查询提现申请单状态,电商平台发起申请后, 电商平台调用此接口查询审批和出款进度
请求参数 | 类型 | 描述 |
---|---|---|
applyment_id | string | 微信支付提现申请单号 |
php
$instance->v3->mch_operate->risk->withdrawlApply->applymentId->_applyment_id_->getAsync([
'applyment_id' => '20220210183333',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/mch_operate/risk/withdrawl-apply/applyment-id/{applyment_id}')->getAsync([
'applyment_id' => '20220210183333',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/mch_operate/risk/withdrawl-apply/applyment-id/{applyment_id}']->getAsync([
'applyment_id' => '20220210183333',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->mch_operate->risk->withdrawlApply->applymentId->_applyment_id_->get([
'applyment_id' => '20220210183333',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/mch_operate/risk/withdrawl-apply/applyment-id/{applyment_id}')->get([
'applyment_id' => '20220210183333',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/mch_operate/risk/withdrawl-apply/applyment-id/{applyment_id}']->get([
'applyment_id' => '20220210183333',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
withdrawl_apply | object | 提现申请单信息 |
applyment_id | string | 微信支付提现申请单号 |
out_request_no | string | 商户提现申请单号 |
state | string | 申请单状态 |
fail_reason | string | 失败原因 |
modify_time | string | 最后更新时间 |
参阅 官方文档