# 获取一个待出场的车牌

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /app_clientv1.helper/getOneStopingCarNumber:
    post:
      summary: 获取一个待出场的车牌
      deprecated: false
      description: 获取一个通道 （随机）
      tags:
        - client 停车场设备端 📟/v1/Helper
        - client
      parameters:
        - name: X-Client
          in: header
          description: ''
          required: true
          example: '{{x_client}}'
          schema:
            type: string
        - name: X-ApifoxUser
          in: header
          description: ''
          required: true
          example: '{{apifox_user}}'
          schema:
            type: string
        - name: X-Time
          in: header
          description: ''
          required: true
          example: '{{timestamp}}'
          schema:
            type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                parkinglot_id:
                  description: 停车场id
                  example: '{{_parkinglot_id}}'
                  type: integer
              required:
                - parkinglot_id
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    x-apifox-orders: []
                    properties: {}
                  msg:
                    type: string
                  code:
                    type: integer
                required:
                  - data
                  - msg
                  - code
                x-apifox-orders:
                  - data
                  - msg
                  - code
              examples:
                '1':
                  summary: 成功示例
                  value:
                    data:
                      id: 56
                      smartpark_id: 1
                      parkinglot_id: 1
                      passageway_id: 2
                      car_number: 陕A81885
                      report_type: recordConsume
                      report_time: 1679466656
                      add_time: 1679466356
                      report_type_text: 出场请求计费
                    msg: ok
                    code: 1
                    device_id: xiak-apifox
                    request_id: '552'
                    version: v1.0.0
                '2':
                  summary: error
                  value:
                    data: []
                    msg: err msg
                    code: 0
          headers: {}
          x-apifox-name: ok
      security: []
      x-apifox-folder: client 停车场设备端 📟/v1/Helper
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/2493394/apis/api-70863846-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://admin.api.test.domain.cn
    description: 测试环境
security: []

```
