PeerTube · Example Payload

Post_Api_V1_Server_Followers_Handle_Accept

Instance Follows

Post_Api_V1_Server_Followers_Handle_Accept 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_server_followers_handle_accept",
  "method": "POST",
  "path": "/api/v1/server/followers/{handle}/accept",
  "summary": "Accept a pending follower to your server",
  "description": "",
  "tags": [
    "Instance Follows"
  ],
  "parameters": [
    {
      "name": "handle",
      "in": "path",
      "required": true,
      "description": "The remote actor handle to remove from your followers",
      "schema": {
        "type": "string",
        "format": "email"
      }
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    },
    "404": {
      "description": "follower not found",
      "examples": {}
    }
  }
}