Outline · Example Payload

Groupslist

Groups

Groupslist 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": "groupsList",
  "path": "/groups.list",
  "method": "POST",
  "summary": "List all groups",
  "tags": [
    "Groups"
  ],
  "requestSchema": {
    "allOf": [
      {
        "$ref": "#/components/schemas/Pagination"
      },
      {
        "$ref": "#/components/schemas/Sorting"
      },
      {
        "type": "object",
        "properties": {
          "userId": {
            "type": "string",
            "format": "uuid",
            "description": "Filter to groups including a specific user"
          },
          "externalId": {
            "type": "string",
            "format": "uuid",
            "description": "Filter to groups matching an external ID"
          },
          "query": {
            "type": "string",
            "format": "uuid",
            "description": "Filter to groups matching a search query"
          }
        }
      }
    ]
  }
}