PeerTube · Example Payload

Getvideospodcastfeed

Video Feeds

Getvideospodcastfeed 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": "getVideosPodcastFeed",
  "method": "GET",
  "path": "/feeds/podcast/videos.xml",
  "summary": "Videos podcast feed",
  "description": "",
  "tags": [
    "Video Feeds"
  ],
  "parameters": [
    {
      "name": "videoChannelId",
      "in": "query",
      "required": true,
      "description": "Limit listing to a specific video channel",
      "schema": {
        "type": "string"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "successful operation",
      "examples": {}
    },
    "404": {
      "description": "video channel not found",
      "examples": {}
    }
  }
}