POST /users
Adds a new user to the company, returns the ID upon success.
Servers
- https://api.pipedrive.com/v1
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
email |
String | Yes |
The email of the user |
active_flag |
Boolean | No |
Whether the user is active or not. Default value: true |
access[] |
Array | No |
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: Default value: [ { "app": "sales" } ] |
access[].admin |
Boolean | No | |
access[].permission_set_id |
String | No | |
access[].app |
String | Yes |
Possible values:
|
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.