provider Users POST /users
@utdk/pipedrive /users
Add a new user
Adds a new user to the company, returns the ID upon success.

Try it

Authentication
Configure credentials for Pipedrive API v1
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

adduser
POST/users
Adds a new user to the company, returns the ID upon success.

Input

required

The email of the user

The access given to the user. Each item in the array represents access to a specific app. Optionally may include either admin flag or permission set ID to specify which access to give within the app. If both are omitted, the default access for the corresponding app will be used. It requires structure as follows: `[{ app: 'sales', permission_set_id: '62cc4d7f-4038-4352-abf3-a8c1c822b631' }, { app: 'global', admin: true }, { app: 'account_settings' }]`

Whether the user is active or not. `false` = Not activated, `true` = Activated

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import pipedrive from '@utdk/pipedrive';

await pipedrive.adduser({
  "access": "[object Object]",
  "active_flag": true
})