Skip to content

撤回停车场进件申请

对商户提供撤回停车场进件申请接口

请求参数类型描述
jsonobject声明请求的JSON数据结构
parking_lot_audit_nostring停车场进件审核单号
out_parking_lot_idstring商户停车场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);
返回字典类型描述
空字符串(无返回内容)

参阅 官方文档

Published on the GitHub by TheNorthMemory