Skip to main content

Create

Creates a new object in Pipedrive CRM (Activity, Deal, Note, Organization, Person, or Lead).

Common Properties

  • Name - The custom name of the node.
  • Color - The custom color of the node.
  • Delay Before (sec) - Waits in seconds before executing the node.
  • Delay After (sec) - Waits in seconds after executing node.
  • Continue On Error - Automation will continue regardless of any error. The default value is false.
info

If the ContinueOnError property is true, no error is caught when the project is executed, even if a Catch node is used.

Inputs

  • Connection Id - The connection ID returned by the Connect node.
  • Data - An object containing the data for the new object to be created.

Options

  • Type - The type of object to create (Activity, Deal, Note, Organization, Person, or Lead).

Output

  • Result - The response from the Pipedrive API containing details of the created object.

How It Works

The Create node creates a new object in Pipedrive CRM. When executed, the node:

  1. Validates the provided Connection Id
  2. Validates the Data input
  3. Uses the selected Type option to determine what kind of object to create
  4. Calls the appropriate Pipedrive API endpoint to create the object
  5. Returns the API response as the result

Requirements

  • A valid connection to Pipedrive established using the Connect node
  • Properly formatted data object for the selected object type
  • Appropriate permissions in Pipedrive to create the selected object type

Error Handling

The node will return specific errors in the following cases:

  • Empty or invalid Connection Id
  • Empty or invalid Data object
  • Invalid Type selection
  • Pipedrive API errors (e.g., insufficient permissions, invalid data format)

Usage Notes

  • The Data input should be an object with properties matching the fields of the object type being created
  • The Connection Id must be obtained from a previous Connect node
  • Different object types require different data structures in the Data input
  • The result contains the full response from the Pipedrive API, including the ID of the created object