Outline · Example Payload

Attachmentsdelete

Attachments

Attachmentsdelete 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": "attachmentsDelete",
  "path": "/attachments.delete",
  "method": "POST",
  "summary": "Delete an attachment",
  "tags": [
    "Attachments"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "format": "uuid",
        "description": "Unique identifier for the attachment."
      }
    },
    "required": [
      "id"
    ]
  }
}