12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- definitions:
- base.HTTPError:
- properties:
- code:
- example: 500
- format: int
- type: integer
- message:
- example: status bad request
- type: string
- type: object
- v1.QueryBody:
- properties:
- api:
- type: string
- param:
- type: string
- type: object
- v1.QueryResponse:
- properties:
- data:
- type: string
- type: object
- info:
- contact: {}
- description: This is a gateway server. On the page, you can go to do testing for
- every API.
- title: Project adm-data-gateway's APIs
- version: "1.1"
- paths:
- /api/v1.0/query:
- post:
- consumes:
- - application/json
- description: API查询
- parameters:
- - description: appkey
- in: header
- name: appkey
- required: true
- type: string
- - description: timestamp
- in: header
- name: ts
- required: true
- type: string
- - description: 签名
- in: header
- name: sign
- required: true
- type: string
- - description: body
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.QueryBody'
- produces:
- - application/json
- responses:
- "200":
- description: 响应信息
- schema:
- $ref: '#/definitions/v1.QueryResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: API查询
- tags:
- - query
- - v1.0
- swagger: "2.0"
|