Outputs all data on the record that is associated with the given ID.
Options
- Your pipedrive entities (drop down): a dropdown of your available record types to update in Pipedrive including activities, deals, contacts and organizations
Input Fields
- id (number): the unique identifier of the record in Pipedrive. NOTE: This field is required and must be the unique ID that Pipedrive assigns to the record upon creation. To find the ID of the record, you can use the Search by Term action in the Pipedrive connector.
Output Fields
Output fields are dynamically generated and will reflect the fields that are available in your Pipedrive instance for that record type. NOTE: all custom fields are represented by a unique ID string. For tips on how to work with custom fields on cards, please see the Custom Fields section below.
Custom fields that you have created in Pipedrive for any record type will be represented as a unique ID string. Follow these steps to find the text label for the custom field: You can then rename the field in the card in your Flow to match the text label: If your custom field is formatted as single option, the field will only take in certain values, each one of which is identified as a unique ID. Therefore, when writing to a custom, single option field in Pipedrive, you will need to enter in the ID of the option into that custom field, NOT the display name you see in Pipedrive. For example, let’s say you have a single option custom field labeled “Lead Source” on a Pipedrive contact with a Field API Key of 12309fojpiawef123dr12s3jf978 and dropdown options of “Outbound” and “Inbound”. The options “Outbound” and “Inbound” will be assigned an ID automatically through the Pipedrive API, let’s say 121 for “Outbound” and 122 for “Inbound”. When you are creating a contact in Pipedrive via a Flow that came through an inbound lead source, you would type 122 into the field 12309fojpiawef123dr12s3jf978 on the Pipedrive Create card. How do you know where to find the ID of the dropdown options? To find the ID of the single options, you need to go to Pipedrive’s API documentation. Don’t be intimidated though, you don’t need to be an engineer to follow these steps: From the Lead Source example above, you would see something like this in Pipedrive’s API documentation (important information in bold): “id”: 1234, Again, type 122 into the field in the card in order to select Inbound as your Contact’s Lead Source. What about multiple option custom fields? If you have a custom field that can take in multiple options, follow the same steps above. Then, when entering the option ID into the field in the card, separate each value by a comma and no spaces. For example, if Lead Source was a multiple option field and you wanted to make the Contact’s Lead Source both Inbound AND Outbound, you would type 121,122 into the Lead Source field.Custom Fields
“key”: “12309fojpiawef123dr12s3jf978”,
“name”: “Lead Source”,
“order_nr”: 9,
“field_type”: “enum”,
“add_time”: “2016-04-22 23:21:57”,
“update_time”: “2016-07-05 15:25:50”,
“active_flag”: true,
“edit_flag”: true,
“index_visible_flag”: true,
“details_visible_flag”: true,
“add_visible_flag”: true,
“important_flag”: false,
“bulk_edit_allowed”: true,
“options”: [ { “id”: 121, “label”: “Outbound” }, { “id”: 122, “label”: “Inbound” …