| 123456789101112131415161718192021222324252627 |
- get:
- summary: Display the specified resource.
- tags:
- - channel
- description: 返回某个channel的信息
- parameters:
- - name: channelId
- in: path
- required: true
- description: channel uuid
- schema:
- type: string
- responses:
- "200": # status code
- description: A JSON array of channel information
- content:
- application/json:
- schema:
- type: object
- properties:
- ok:
- type: boolean
- message:
- type: string
- data:
- type: object
- $ref: "./channel.yaml"
|