Drimify empowers you to easily create games and gamification experiences that help you reach your goals. Supercharged games, super-easy creation.
Go to siteDrimify offers a suite of tools to create engaging and interactive content like quizzes, games, and e-learning modules. With the Drimify API, you can automate the creation and management of these interactive elements, extract analytics, and personalize user experiences. On Pipedream, you can leverage these API capabilities to build serverless workflows that connect Drimify with other apps, streamlining processes like lead generation, user engagement tracking, and content updates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
drimify: {
type: "app",
app: "drimify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://endpoint.drimify.com/api/app_data_collections`,
headers: {
"X-AUTH-TOKEN": `${this.drimify.$auth.api_key}`,
},
})
},
})
Lead Collection to CRM: Capture leads with Drimify's interactive content and automatically add new contacts to a CRM like Salesforce. When a new lead completes a game or quiz, the workflow triggers, extracting the user's data and pushing it directly into the CRM.
Content Update Notifications: Send real-time updates via Slack or email whenever new content is published on Drimify. This workflow can monitor Drimify for new quizzes or games and immediately notify your team, ensuring everyone is up-to-date with the latest content.
User Engagement Analytics to Google Sheets: Collect user engagement data from Drimify and log it into a Google Sheet for analysis. Each time a user completes an interactive module, the workflow triggers, appending the relevant data to a Sheet, which can then be used for reporting and insights.
Drimify uses API keys for authentication. When you connect your Drimify account, Pipedream securely stores the keys so you can easily authenticate to Drimify APIs in both code and no-code steps.