Paragon
Home
Search…
Paragon
Paragon Connect
Home
Start a Free Trial
Quickstart Sample App
Getting Started
Introduction
Installing the Connect SDK
Adding an Integration
Displaying the Connect Portal
Customizing the Connect Portal
Workflows
Building Workflows
Triggering Workflows
Integration Actions
Workflow User Settings
Making API Requests
Using Functions
Using Conditionals
Using Fan Out
Sending a Response
Viewing Task History
Auto-Retries
Version History
API
Using the Connect API
API Reference
Resources
Integration Providers
Asana
Azure DevOps
ClickUp
Facebook Ads
Google
Google Analytics
Google Calendar
Google Campaign Manager 360
Google Drive
Google Search Console
Google Sheets
HubSpot
Intercom
Jira
Klaviyo
Mailchimp
Marketo
Microsoft Dynamics 365
Microsoft Outlook
Microsoft Teams
Monday.com
Oracle Eloqua
Oracle Financials Cloud
Outreach
Pardot
Pipedrive
QuickBooks
Salesforce
ServiceNow
SharePoint
Shopify
Slack
Stripe
Trello
Xero
Zendesk
Zoom
Custom Integrations
JavaScript Libraries
Paragon User Token Generator
Tutorials
Building a Salesforce Integration
Building a HubSpot Integration
Building a Slack Integration
Building a Marketo Integration
Managing Your Account
Setting up Environment Secrets
Working with Team Members
Working with Projects
Security
Security
GDPR
Service Level Agreement
What's new in Paragon
Powered By
GitBook
Mailchimp
Manage campaigns and contacts in Mailchimp
Setup Guide
You can find your Mailchimp app credentials by visiting your
Mailchimp Account Settings.
Note:
You'll need to create a new Mailchimp app if you don't already have one.
You'll need the following information to set up your Mailchimp App with Paragon Connect:
Client ID
Client Secret
Add the Redirect URL to your Mailchimp app
Paragon provides a redirect URL to send information to your Mailchimp app. To add the redirect URL to your Mailchimp app:
1. Copy the link under "
Redirect URL"
in your integration settings in Paragon. The Redirect URL is:
1
https://passport.useparagon.com/oauth
Copied!
2. Click your account by selecting the account icon.
3. Select
Account
from the dropdown list.
4. Under
Extras > Registered apps
, select your application or create a new one if you don't already have one.
5. Under
Redirect URI
, paste-in the redirect URL from Paragon. The redirect URL can be found in Step 1.
6. Press the green
Update
button to confirm your changes.
Add your Mailchimp app to Paragon
1. Select
Mailchimp
from the
Integrations Catalog
.
2. Under
Integrations > Connected Integrations >
{YOUR_APP}
>
Settings
, fill out your credentials in their respective sections:
Client ID:
1.
Log in to your
Mailchimp dashboard
.
2.
Select "
Account"
from the Account dropdown.
3.
Under
Extras > Registered apps
, select your application.
4.
Copy the
Client ID
to use in Paragon Conncet.
Client Secret:
1.
Log in to your
Mailchimp dashboard
.
2.
Click on "
Account
" in the Account dropdown.
3.
Under
Extras > Registered apps
, select your application.
4.
Copy your
Client ID
to use in Paragon Connect.
Press the blue "
Connect
" button to save your credentials.
Note:
Leaving the Client ID and Client Secret blank will use Paragon development keys.
Connecting to Mailchimp
Once your users have connected their Mailchimp account, you can use the Paragon SDK to access the Mailchimp API on behalf of connected users.
See the Mailchimp
REST API documentation
for their full API reference.
Any Mailchimp API endpoints can be accessed with the Paragon SDK as shown in this example.
JavaScript
1
// You can find your project ID in the Overview tab of any Integration.
2
3
// Authenticate the user
4
paragon
.
authenticate
(
<
ProjectID
>
,
<
Paragon User Token
>
);
5
6
// Create a List
7
await
paragon
.
request
(
"mailchimp"
,
"/lists/<List ID>"
,
{
8
method
:
"POST"
,
9
body
:
{
10
"members"
:
[{
email_address
:
"
[email protected]
"
}],
11
"update_existing"
:
true
12
}
13
});
14
15
// List all Campaigns
16
await
paragon
.
request
(
"mailchimp"
,
"/campaigns"
,
17
method
:
“
GET
”
18
});
19
Copied!
Building Mailchimp workflows
Once your Mailchimp account is connected, you can add steps to perform the following actions:
Create Campaign
Update Campaign
Send Campaign
Search Campaigns
Get Campaign by ID
Delete Campaign by ID
Create List
Get List by ID
Search Lists
Add Contact to List
Update Contact in List
Get Contacts from List
When using Mailchimp, you can reference data from previous steps by typing
{{
to invoke the variable menu.
Previous
Klaviyo
Next
Marketo
Last modified
3mo ago
Copy link
Contents
Setup Guide
Add the Redirect URL to your Mailchimp app
Add your Mailchimp app to Paragon
Connecting to Mailchimp
Building Mailchimp workflows