PeerTube · Example Payload

Delete_Api_V1_Server_Following_Hostorhandle

Instance Follows

Delete_Api_V1_Server_Following_Hostorhandle 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_following_hostOrHandle",
  "method": "DELETE",
  "path": "/api/v1/server/following/{hostOrHandle}",
  "summary": "Unfollow an actor (PeerTube instance, channel or account)",
  "description": "",
  "tags": [
    "Instance Follows"
  ],
  "parameters": [
    {
      "name": "hostOrHandle",
      "in": "path",
      "required": true,
      "description": "The hostOrHandle to unfollow",
      "schema": {
        "type": "string"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    },
    "404": {
      "description": "host or handle not found",
      "examples": {}
    }
  }
}