BetterCloud · Schema

UserUpdateRequest

Fields to update on a user (all optional).

AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Properties

Name Type Description
first_name string New first name.
last_name string New last name.
department string New department.
title string New job title.
location string New office location.
View JSON Schema on GitHub

JSON Schema

bettercloud-user-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-schema/bettercloud-user-update-request-schema.json",
  "title": "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"
    }
  }
}