撤回停车场进件申请
对商户提供撤回停车场进件申请接口
| 请求参数 | 类型 | 描述 |
|---|---|---|
| json | object | 声明请求的JSON数据结构 |
| parking_lot_audit_no | string | 停车场进件审核单号 |
| out_parking_lot_id | string | 商户停车场ID |
php
$instance->v3->parking->reminders->application->withdraw->postAsync([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();php
$instance->chain('v3/parking/reminders/application/withdraw')->postAsync([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();php
$instance['v3/parking/reminders/application/withdraw']->postAsync([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r($response->getStatusCode() === 204);
})
->wait();php
$response = $instance->v3->parking->reminders->application->withdraw->post([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
]);
print_r($response->getStatusCode() === 204);php
$response = $instance->chain('v3/parking/reminders/application/withdraw')->post([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
]);
print_r($response->getStatusCode() === 204);php
$response = $instance['v3/parking/reminders/application/withdraw']->post([
'json' => [
'parking_lot_audit_no' => 'PLA202604230001',
'out_parking_lot_id' => 'lot_sz_tencent_001',
],
]);
print_r($response->getStatusCode() === 204);| 返回字典 | 类型 | 描述 |
|---|---|---|
| 空字符串(无返回内容) | ||
参阅 官方文档