PeerTube · Example Payload

Acceptvideochannelcollaborator

**PeerTube >= 8.0**

Video Channels

Acceptvideochannelcollaborator 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": "acceptVideoChannelCollaborator",
  "method": "POST",
  "path": "/api/v1/video-channels/{channelHandle}/collaborators/{collaboratorId}/accept",
  "summary": "Accept a collaboration invitation",
  "description": "**PeerTube >= 8.0**",
  "tags": [
    "Video Channels"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    },
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "Collaboration accepted",
      "examples": {}
    }
  }
}