users_update
Update a user's name, email, or activation status in Pipedrive. Requires admin permissions and only modifies provided fields.
Instructions
Update user details.
Updates information for an existing user. Requires admin permissions.
Workflow tips:
Only provided fields will be updated
Use users/get to retrieve current values first
Email must remain unique if changed
Cannot update own admin status
Common use cases:
Update user name: { "id": 123, "name": "John Smith" }
Change user email: { "id": 123, "email": "newemail@company.com" }
Deactivate user: { "id": 123, "active_flag": false }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the user to update | |
| name | No | Name of the user | |
| No | Email address of the user | ||
| active_flag | No | Whether the user is active |