# 2. 获取园区基础信息（通过短url）

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /app_clientv1.pub/s:
    post:
      summary: 2. 获取园区基础信息（通过短url）
      deprecated: false
      description: >-
        使用场景：后台园区列表获取某个园区的短URL（4位字符串），设备端初始状态可使用此接口获取基础配置信息（客户端加签key，默认登录密码
        123456）


        > [园区管理 · 智能停车收费管理系统API文档 ·
        看云](https://www.kancloud.cn/zuomingsheng/parkinglot/2733622)
      tags:
        - client 停车场设备端 📟/v1/Pub
        - 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:
                u:
                  description: 短url
                  example: 23df
                  type: string
              required:
                - u
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    x-apifox-orders: []
                  msg:
                    type: string
                  code:
                    type: integer
                required:
                  - data
                  - msg
                  - code
                x-apifox-orders:
                  - data
                  - msg
                  - code
              examples:
                '1':
                  summary: success
                  value:
                    data:
                      id: 1
                      name: 杨飞
                      number: whcsyq1
                      area_id: 1649209542
                      detail_address: ''
                      desp: null
                      creator_id: 0
                      add_time: 1617852888
                      status: 1
                      is_del: 0
                      kf_mobile: ''
                      product_key: '11111111'
                      client_key: '1111111111'
                      pwd: 14e1b600b1fd579f47433b88e8d85291
                    msg: ''
                    code: 1
                    request_id: ''
                    version: ''
                    device_id: ''
                '2':
                  summary: error
                  value:
                    data: {}
                    msg: '短url不存在，short_url: 7was'
                    code: 0
                    request_id: ''
                    version: ''
                    device_id: ''
          headers: {}
          x-apifox-name: ok
      security: []
      x-apifox-folder: client 停车场设备端 📟/v1/Pub
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/2493394/apis/api-70863825-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://admin.api.test.domain.cn
    description: 测试环境
security: []

```
