PeerTube · Example Payload

Removevideopassword

**PeerTube >= 6.0**

Video Passwords

Removevideopassword 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": "removeVideoPassword",
  "method": "DELETE",
  "path": "/api/v1/videos/{id}/passwords/{passwordId}",
  "summary": "Delete a video password",
  "description": "**PeerTube >= 6.0**",
  "tags": [
    "Video Passwords"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    },
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    },
    "403": {
      "description": "cannot delete the last password of the protected video",
      "examples": {}
    },
    "400": {
      "description": "video is not password protected",
      "examples": {}
    }
  }
}