Outline · Example Payload

Groupscreate

Groups

Groupscreate 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": "groupsCreate",
  "path": "/groups.create",
  "method": "POST",
  "summary": "Create a group",
  "tags": [
    "Groups"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "example": "Designers"
      }
    },
    "required": [
      "name"
    ]
  }
}