PeerTube · Example Payload

Deleteregistration

Delete the registration entry. It will not remove the user associated with this registration (if any)

Register

Deleteregistration 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": "deleteRegistration",
  "method": "DELETE",
  "path": "/api/v1/users/registrations/{registrationId}",
  "summary": "Delete registration",
  "description": "Delete the registration entry. It will not remove the user associated with this registration (if any)",
  "tags": [
    "Register"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false,
      "description": "",
      "schema": {}
    }
  ],
  "requestBody": null,
  "responses": {
    "204": {
      "description": "successful operation",
      "examples": {}
    }
  }
}