PeerTube · Example Payload

Post_Api_V1_Watched Words_Server_Lists

**PeerTube >= 6.2**

Watched Words

Post_Api_V1_Watched Words_Server_Lists 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_watched-words_server_lists",
  "method": "POST",
  "path": "/api/v1/watched-words/server/lists",
  "summary": "Add server watched words",
  "description": "**PeerTube >= 6.2**",
  "tags": [
    "Watched Words"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "type": "object",
      "properties": {
        "listName": {
          "type": "string"
        },
        "words": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "example": {}
  },
  "responses": {
    "200": {
      "description": "successful operation",
      "examples": {}
    }
  }
}