Outline · Example Payload

Usersupdate

Users

Usersupdate 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": "usersUpdate",
  "path": "/users.update",
  "method": "POST",
  "summary": "Update a user",
  "tags": [
    "Users"
  ],
  "requestSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "language": {
        "type": "string",
        "format": "BCP47"
      },
      "avatarUrl": {
        "type": "string",
        "format": "uri"
      }
    }
  }
}