Outline · Example Payload

Accessrequestsapprove

AccessRequests

Accessrequestsapprove 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": "accessRequestsApprove",
  "path": "/accessRequests.approve",
  "method": "POST",
  "summary": "Approve an access request",
  "tags": [
    "AccessRequests"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "format": "uuid",
        "description": "Unique identifier for the access request."
      },
      "permission": {
        "type": "string",
        "description": "The permission to grant the requesting user.",
        "enum": [
          "read",
          "read_write",
          "admin"
        ],
        "default": "read"
      }
    },
    "required": [
      "id"
    ]
  }
}