PeerTube · Example Payload

Post_Api_V1_Users_Me_New Feature Info_Read

**PeerTube >= v8.0.0

My User

Post_Api_V1_Users_Me_New Feature Info_Read 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_users_me_new-feature-info_read",
  "method": "POST",
  "path": "/api/v1/users/me/new-feature-info/read",
  "summary": "Mark feature info as read",
  "description": "**PeerTube >= v8.0.0",
  "tags": [
    "My User"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "type": "object",
      "properties": {
        "feature": {
          "$ref": "#/components/schemas/NewFeatureInfoType"
        }
      },
      "required": [
        "feature"
      ]
    },
    "example": {}
  },
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}