| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- post:
- summary: Store a newly created resource in storage.
- tags:
- - channel
- parameters:
- - name: channelId
- in: path
- required: true
- description: channel uuid
- schema:
- type: string
- requestBody:
- required: true
- description: 新建channel参数
- content:
- application/json:
- schema:
- type: object
- properties:
- name:
- type: string
- required: true
- studio:
- type: string
- required:
- - name
- - studio
- 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"
|