users_create
Create a new user account in Pipedrive by providing name and unique email. The user receives an activation email and is active by default unless specified otherwise.
Instructions
Add a new user to the company.
Creates a new user account in the Pipedrive company. Requires admin permissions.
Workflow tips:
Email is required and must be unique
User will receive an activation email
New users are active by default
Name can be provided or will be derived from email
Common use cases:
Add new team member: { "name": "John Doe", "email": "john@company.com" }
Create inactive user: { "name": "Jane Smith", "email": "jane@company.com", "active_flag": false }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the user | |
| Yes | Email address of the user (must be unique) | ||
| active_flag | No | Whether the user is active (default: true) |