Fields to update on a user (all optional).
{ "$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" } } }