Salesloft
Connect to your users' Salesloft accounts
You'll need the following information to set up your Salesloft App with Paragon Connect:
- Client ID
- Client Secret
- Scopes Requested
Under Integrations > Connected Integrations > {YOUR_APP} > Settings, fill out your credentials from your developer app in their respective sections:
- Client ID: Found under Client ID on your Salesloft App page.
- Client Secret: Found under Client Secret on your Salesloft App page.
- Permissions: Select the scopes you've requested for your application.
Leaving the Client ID and Client Secret blank will use Paragon development keys.

Once your users have connected their Salesloft account, you can use the Paragon SDK to access the Salesloft API on behalf of connected users.
Any Salesloft API endpoints can be accessed with the Paragon SDK as shown in this example.
// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Fetch a call by ID
await paragon.request("salesloft", "/v2/activities/calls/<CALL ID>.json", {
method: "GET"
});
// List people
await paragon.request("salesloft", "/v2/people.json", {
method: "GET"
});
Once your Saleloft account is connected, you can add steps to perform the following actions:
- Create an Account
- Update an Account
- Get an Account
- Delete an Account
- Search Accounts
- Create a Custom Field
- Update a Custom Field
- Get a Custom Field
- Delete a Custom Field
- Search Custom Fields
- Create a Call
- Get a Call
- Search Calls
- Create a Person
- Update a Person
- Get a Person
- Delete a Person
- Search Persons
- Create a Task
- Update a Task
- Get a Task
- Search Tasks
You can also use the Salesloft Request step to access any of Salesloft's API endpoints without the authentication piece.
When creating or updating records in Salesloft, you can reference data from previous steps by typing
{{
to invoke the variable menu.Webhook triggers can be used to run workflows based on events in your users' Salesloft account. For example, you might want to trigger a workflow whenever new people are created in Salesloft to sync your users' Salesloft contacts to your application in real-time.

You can find the full list of Webhook Triggers for Salesloft below:
- New Person Created
- Person Updated
- New Account Created
- Account Updated
Last modified 4mo ago