PeerTube · Example Payload

Addvideochannel

Video Channels

Addvideochannel is an example object payload from PeerTube, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBodyresponses

Example Payload

Raw ↑
{
  "operationId": "addVideoChannel",
  "method": "POST",
  "path": "/api/v1/video-channels",
  "summary": "Create a video channel",
  "description": "",
  "tags": [
    "Video Channels"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/VideoChannelCreate"
    },
    "example": {}
  },
  "responses": {
    "200": {
      "description": "successful operation",
      "examples": {}
    }
  }
}