PeerTube · Example Payload

Sendclientlog

Logs

Sendclientlog 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": "sendClientLog",
  "method": "POST",
  "path": "/api/v1/server/logs/client",
  "summary": "Send client log",
  "description": "",
  "tags": [
    "Logs"
  ],
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/SendClientLog"
    },
    "example": {}
  },
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}