PeerTube · Example Payload

Delete_Api_V1_Server_Blocklist_Servers_Host

Server Blocklist

Delete_Api_V1_Server_Blocklist_Servers_Host 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": "delete_api_v1_server_blocklist_servers_host",
  "method": "DELETE",
  "path": "/api/v1/server/blocklist/servers/{host}",
  "summary": "Unblock a server by server",
  "description": "",
  "tags": [
    "Server Blocklist"
  ],
  "parameters": [
    {
      "name": "host",
      "in": "path",
      "required": true,
      "description": "server domain to unblock",
      "schema": {
        "type": "string",
        "format": "hostname"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    },
    "404": {
      "description": "server block does not exist",
      "examples": {}
    }
  }
}