Outline · Example Payload

Sharesinfo

Shares

Sharesinfo 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": "sharesInfo",
  "path": "/shares.info",
  "method": "POST",
  "summary": "Retrieve a share object",
  "tags": [
    "Shares"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string",
        "description": "Unique identifier for the share.",
        "format": "uuid"
      },
      "documentId": {
        "type": "string",
        "description": "Unique identifier for a document. One of id or documentId must be provided.",
        "format": "uuid"
      }
    }
  }
}