Quentn is the first marketing operating system, with a portal for complete customer communication.
Go to siteQuentn is a marketing automation platform that enables users to streamline communication with their leads and customers. With the Quentn API on Pipedream, you can automate tasks like managing contacts, sending personalized emails, and triggering actions based on customer behaviors. It allows for a more targeted approach to marketing by engaging with your audience at critical points in the customer journey, all while saving time with automated workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quentn: {
type: "app",
app: "quentn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.quentn.$auth.system_id}.${this.quentn.$auth.server_id}.quentn.com/public/api/V1/terms`,
headers: {
Authorization: `Bearer ${this.quentn.$auth.api_key}`,
},
})
},
})
Automated Lead Scoring and Segmentation: Use Quentn to track customer interactions and score leads based on activity. Combine this data with Pipedream's functionality to segment and transfer leads to different lists or CRMs, ensuring tailored follow-ups.
Targeted Email Campaigns Triggered by User Behavior: Set up a Pipedream workflow that listens for specific actions taken by users, like visiting a pricing page or downloading a white paper. Leverage Quentn's API to trigger an email sequence offering further information, discounts, or a personal consultation, pushing them further down the funnel.
Customer Feedback and Reactivation Campaigns: Implement a Pipedream workflow to monitor customer activity. Use Quentn to reach out with a feedback request survey after a purchase or to re-engage users who haven't interacted with your brand in a while with a special offer.
Emit new event when a campaign contact is sent. You should set up a webhook in the Quentn UI workflow builder to send a POST request to this source by drag and drop the API Send
element.
quentn uses API keys for authentication. When you connect your quentn account, Pipedream securely stores the keys so you can easily authenticate to quentn APIs in both code and no-code steps.
To get your API Key, navigate to the Settings menu (icon with the gear logo) in your quentn account, then go to the API Info menu and click on the green button that says "Create new key". Give the key a name (e.g. the name of the third-party provider) and save it.
On the same API Info page, within API base URL, you are able to get your System ID and Server ID. The API base URL has the following structure:https://{system_id}.{server_id}.quentn.com/public/api/V1/contact