# 4. 设备上传图片ftp信息

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /app_clientv1.Stoping/ftp:
    post:
      summary: 4. 设备上传图片ftp信息
      deprecated: false
      description: |-
        使用ftp将车辆出入场的图片上传至云端，返回值使用AES解密 
        key=园区信息client_key
        iv=园区信息number
      tags:
        - client 停车场设备端 📟/v1/Stoping
        - 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: {}
      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: {}
                    msg: ''
                    code: 1
                '2':
                  summary: error
                  value:
                    data: {}
                    msg: err msg
                    code: 0
          headers: {}
          x-apifox-name: ok
      security: []
      x-apifox-folder: client 停车场设备端 📟/v1/Stoping
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/2493394/apis/api-70863829-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://admin.api.test.domain.cn
    description: 测试环境
security: []

```
