PeerTube · Example Payload

Post_Api_V1_Video Channels_Channelhandle_Import Videos

Import a remote channel/playlist videos into a channel

Video ChannelsChannels Sync

Post_Api_V1_Video Channels_Channelhandle_Import Videos 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": "post_api_v1_video-channels_channelHandle_import-videos",
  "method": "POST",
  "path": "/api/v1/video-channels/{channelHandle}/import-videos",
  "summary": "Import videos in channel",
  "description": "Import a remote channel/playlist videos into a channel",
  "tags": [
    "Video Channels",
    "Channels Sync"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    }
  ],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/ImportVideosInChannelCreate"
    },
    "example": {}
  },
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}