从业机构解除用户授权关系(授权协议号)
从业机构通过调用该接口,使用authorization_code解除用户授权关系
| 请求参数 | 类型 | 描述 |
|---|---|---|
| authorization_code | string | 授权协议号 |
| json | object | 声明请求的JSON数据结构 |
| service_id | string | 服务ID |
| channel_id | string | 渠道商商户号 |
| sub_mchid | string | 子商户号 |
| reason | string | 撤销原因 |
php
$instance->v3->payscore->acquiringbank->permissions->authorizationCode->_authorization_code_->terminate->postAsync([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
php
$instance->chain('v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}/terminate')->postAsync([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
php
$instance['v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}/terminate']->postAsync([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
php
$response = $instance->v3->payscore->acquiringbank->permissions->authorizationCode->_authorization_code_->terminate->post([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
]);
print_r($response->getStatusCode() === 204);1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
php
$response = $instance->chain('v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}/terminate')->post([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
]);
print_r($response->getStatusCode() === 204);1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
php
$response = $instance['v3/payscore/acquiringbank/permissions/authorization-code/{authorization_code}/terminate']->post([
'authorization_code' => '1275342195190894594',
'json' => [
'service_id' => '500001',
'channel_id' => '1230000109',
'sub_mchid' => '1230000109',
'reason' => '撤销原因',
],
]);
print_r($response->getStatusCode() === 204);1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
| 返回字典 | 类型 | 描述 |
|---|---|---|
| 空字符串(无返回内容) | ||
参阅 官方文档