撤销交易连接名片配置申请
接口适用场景:当服务商配置交易连接名片后,可调用该接口撤销“已发起但未生效”状态的交易连接名片申请。
| 请求参数 | 类型 | 描述 |
|---|---|---|
| json | object | 声明请求的JSON数据结构 |
| business_code | string | 业务申请编号 |
| brand_id | string | 品牌ID |
php
$instance->v3->brand->card->cardLinks->cancelApplyment->postAsync([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/brand/card/card-links/cancel-applyment')->postAsync([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/brand/card/card-links/cancel-applyment']->postAsync([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->brand->card->cardLinks->cancelApplyment->post([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/brand/card/card-links/cancel-applyment')->post([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/brand/card/card-links/cancel-applyment']->post([
'json' => [
'business_code' => '190001351110000',
'brand_id' => '1004',
],
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 |
|---|---|---|
| business_code | string | 业务申请编号 |
参阅 官方文档