PeerTube · Example Payload

Post_Api_V1_Users_Me_History_Videos_Remove

My History

Post_Api_V1_Users_Me_History_Videos_Remove 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_history_videos_remove",
  "method": "POST",
  "path": "/api/v1/users/me/history/videos/remove",
  "summary": "Clear video history",
  "description": "",
  "tags": [
    "My History"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "multipart/form-data",
    "schema": {
      "type": "object",
      "properties": {
        "beforeDate": {
          "description": "history before this date will be deleted",
          "type": "string",
          "format": "date-time"
        }
      }
    },
    "example": {}
  },
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}