Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To use the Pipedrive connector, add the <pipedrive.init> element in your configuration before carrying out any other Pipedrive operations. 

Pipedrive API uses a JSON format for output and is capable of handling CORS (Cross-Origin Resource Sharing) requests. The API is stateless – all requests are validated against an API token. The API token can be obtained manually from the Pipedrive app, or via fetching the Authorations objects. For more information, see https://developers.pipedrive.com/v1.

Code Block
languagexml
titleinit
<pipedrive.init>
    <apiToken>{$ctx:apiToken}</apiToken>
	<apiUrl>{$ctx:apiUrl}</apiUrl>
</pipedrive.init>
Properties
  • apiToken: The api token of a valid Pipedrive account
  • apiUrl: The URL to access the Pipedrive API

Now that you have connected to Pipedrive, use the information in the following topics to perform various operations with the connector. After you have completed your configurations, see Testing the Pipedrive Integration .

...