Skip to main content

Get

Retrieves a specific object from Pipedrive CRM by its ID (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.
  • Object Id - The ID of the object to be retrieved.

Options

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

Output

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

How It Works

The Get node retrieves a specific object from Pipedrive CRM by its ID. When executed, the node:

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

Requirements

  • A valid connection to Pipedrive established using the Connect node
  • The ID of the object to be retrieved
  • Appropriate permissions in Pipedrive to read the selected object type

Error Handling

The node will return specific errors in the following cases:

  • Empty or invalid Connection Id
  • Empty or invalid Object Id
  • Invalid Type selection
  • Pipedrive API errors (e.g., insufficient permissions, object not found)

Usage Notes

  • The Object Id should be obtained from a previous operation (e.g., Create or search)
  • The Connection Id must be obtained from a previous Connect node
  • The result contains the full response from the Pipedrive API with all object details
  • Different object types will return different data structures in the result