Outline · Example Payload

Oauthclientsdelete

OAuthClients

Oauthclientsdelete is an example object payload from Outline, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdpathmethodsummarytagsrequestSchema

Example Payload

Raw ↑
{
  "operationId": "oauthClientsDelete",
  "path": "/oauthClients.delete",
  "method": "POST",
  "summary": "Delete an OAuth client",
  "tags": [
    "OAuthClients"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "description": "Unique identifier for the OAuth client.",
        "format": "uuid"
      }
    },
    "required": [
      "id"
    ]
  }
}