User onboarding is just the beginning. Empower your team to measure and improve product adoption—without a developer.
Go to siteThe Appcues API enables developers to enrich and automate the user onboarding and engagement processes. By interfacing with Appcues, you can programmatically manage flows, segments, and events, and integrate user experience data into other systems for analysis or action. This supports creating customized, scalable user journeys and leveraging user interactions for informed decision-making across your business applications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appcues: {
type: "app",
app: "appcues",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.appcues.com/v2/accounts/${this.appcues.$auth.account_id}/flows`,
auth: {
username: `${this.appcues.$auth.api_key}`,
password: `${this.appcues.$auth.api_secret}`,
},
})
},
})
Sync User Events with a CRM: Automate the synchronization of user engagement data from Appcues to your CRM platform. For instance, when a user completes an onboarding flow in Appcues, trigger a workflow in Pipedream that updates the user's profile in Salesforce with the new engagement data.
Personalized Email Campaigns Based on User Behavior: Use Appcues events to trigger personalized email campaigns. When a user completes a specific action or flow within your app, use Pipedream to send this data to an email marketing service like Mailchimp to enroll the user in a targeted email sequence.
Slack Notifications for User Milestones: Enhance team collaboration by sending Slack notifications when users hit key milestones. Set up a Pipedream workflow that listens for flow_completed
events in Appcues and posts a message to a designated Slack channel, keeping your team informed about user progress in real time.
Appcues uses API keys for authentication. When you connect your Appcues account, Pipedream securely stores the keys so you can easily authenticate to Appcues APIs in both code and no-code steps.
To retrieve your API keys,