Note: You’ll need to create a new Outreach app if you don’t already have one.
You can find your Outreach app credentials by visiting your Outreach developer portal.You’ll need the following information to set up your Outreach App with Paragon Connect:
Under Integrations > Connected Integrations > Outreach > App Configuration > Configure, fill out your credentials in their respective sections:
Client ID: Provided by Outreach’s team.
Client Secret: Provided by Outreach’s team.
Permissions: Select the scopes you’ve requested for your application. For a list of recommended scopes, please view this integration within your Paragon dashboard. View dashboard.
Press the purple “Save Changes” button to save your credentials.
Once your users have connected their Outreach account, you can use the Paragon SDK to access the Outreach API on behalf of connected users.See the Outreach REST API documentation for their full API reference.Any Outreach API endpoints can be accessed with the Paragon SDK as shown in this example.
JavaScript
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration// Authenticate the userparagon.authenticate(<ProjectId>, <UserToken>);// Get accountsawait paragon.request("outreach", "/accounts", { method: "GET" });// Create a projectawait paragon.request("outreach", "/prospect", { method: "POST", body: { "type": "prospect", "attributes": { "emails": ["[email protected]"], "firstName": "Sally", "title": "CEO" } } });
Webhook triggers can be used to run workflows based on events in your users’ Outreach account. For example, you might want to trigger a workflow whenever new opportunities are created Outreach to sync your users’ Outreach contacts to your application in real-time.
You can find the full list of Webhook Triggers for Outreach below: