PeerTube · Example Payload

Put_Api_V1_Custom Pages_Homepage_Instance

Homepage

Put_Api_V1_Custom Pages_Homepage_Instance 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": "put_api_v1_custom-pages_homepage_instance",
  "method": "PUT",
  "path": "/api/v1/custom-pages/homepage/instance",
  "summary": "Set instance custom homepage",
  "description": "",
  "tags": [
    "Homepage"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "type": "object",
      "properties": {
        "content": {
          "type": "string",
          "description": "content of the homepage, that will be injected in the client"
        }
      }
    },
    "example": {}
  },
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}