BetterCloud · JSON Structure

Bettercloud User Update Request Structure

Fields to update on a user (all optional).

Type: object Properties: 5
AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

UserUpdateRequest is a JSON Structure definition published by BetterCloud, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

first_name last_name department title location

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-user-update-request-structure.json",
  "name": "UserUpdateRequest",
  "description": "Fields to update on a user (all optional).",
  "type": "object",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "New first name.",
      "example": "Jane"
    },
    "last_name": {
      "type": "string",
      "description": "New last name.",
      "example": "Smith"
    },
    "department": {
      "type": "string",
      "description": "New department.",
      "example": "Product"
    },
    "title": {
      "type": "string",
      "description": "New job title.",
      "example": "Product Manager"
    },
    "location": {
      "type": "string",
      "description": "New office location.",
      "example": "New York"
    }
  }
}