Create and send professional newsletters with the CleverReach email marketing tool – incredibly fast, incredibly easy.
Go to siteThe CleverReach API lets you automate email marketing operations and integrate with your data sources for personalized campaigns. On Pipedream, use this API to craft and manage subscriber lists, send targeted emails, and track campaign performance. With an event-driven platform like Pipedream, you can trigger workflows from numerous sources, manipulate data, and connect CleverReach to other apps to automate complex tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cleverreach: {
type: "app",
app: "cleverreach",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.cleverreach.com/v3/groups.json`,
headers: {
Authorization: `Bearer ${this.cleverreach.$auth.oauth_access_token}`,
},
})
},
})
Sync New Users to CleverReach List: When a user signs up on your platform, trigger a workflow that adds them to a specific CleverReach subscriber list. Pair this with a database like MySQL on Pipedream to log the addition or update subscriber details.
Send Personalized Welcome Emails: Use the CleverReach API to send a welcome email when someone joins a list. Enhance this with conditional logic on Pipedream to personalize the message based on subscriber data, such as location or interests.
Automate Campaign Performance Reporting: After sending a campaign, automate the retrieval of performance data via the CleverReach API. Combine this with Google Sheets on Pipedream to update a spreadsheet with open rates, click-through rates, and other metrics for easy analysis.
Emit new event when a new subscriber is added to a selected group. See the documentation
Emit new event when a receiver unsubscribes. See the documentation
Adds a new subscriber to a mailing list. See the documentation
Updates the information of an existing subscriber. See the documentation
CleverReach uses OAuth authentication. When you connect your CleverReach account, Pipedream will open a popup window where you can sign into CleverReach and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any CleverReach API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://rest.cleverreach.com/oauth/authorize.php
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
response_type=code
&
state={{oauth.state}}
POST
https://rest.cleverreach.com/oauth/token.php
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://rest.cleverreach.com/oauth/token.php
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}