PeerTube · Example Payload

Get_Api_V1_Watched Words_Accounts_Accountname_Lists

**PeerTube >= 6.2**

Watched Words

Get_Api_V1_Watched Words_Accounts_Accountname_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": "get_api_v1_watched-words_accounts_accountName_lists",
  "method": "GET",
  "path": "/api/v1/watched-words/accounts/{accountName}/lists",
  "summary": "List account watched words",
  "description": "**PeerTube >= 6.2**",
  "tags": [
    "Watched Words"
  ],
  "parameters": [
    {
      "name": "accountName",
      "in": "path",
      "required": true,
      "description": "account name to list watched words",
      "schema": {
        "type": "string"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "200": {
      "description": "successful operation",
      "examples": {}
    }
  }
}