Outline · Example Payload

Oauthauthenticationsdelete

OAuthAuthentications

Oauthauthenticationsdelete 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": "oauthAuthenticationsDelete",
  "path": "/oauthAuthentications.delete",
  "method": "POST",
  "summary": "Delete an OAuth authentiation",
  "tags": [
    "OAuthAuthentications"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "oauthClientId": {
        "type": "string",
        "format": "uuid"
      },
      "scope": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "required": [
      "oauthClientId"
    ]
  }
}