Build your partner ecosystem. Heedjy helps modern partnership teams maximize revenue from their partners with faster sales cycles.
Go to siteThe Heedjy API provides functionalities to understand and predict user behavior on digital platforms. With this API integrated into Pipedream, you can automate processes that depend on user data analytics, predict churn, personalize content, or optimize user experiences in real-time. Pipedream's serverless platform allows you to create intricate workflows that can respond to Heedjy's insights, enabling applications to adapt and engage with users more effectively.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heedjy: {
type: "app",
app: "heedjy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.heedjy.com/api/apps?all_versions=false&order_by=name%2B&limit=50&returnCount=false`,
headers: {
Authorization: `Bearer ${this.heedjy.$auth.oauth_access_token}`,
},
})
},
})
User Engagement Tracking: Build a workflow on Pipedream that listens for user engagement events from your app, sends them to Heedjy for analysis, and stores the insights in a Google Sheets document for easy review and action planning.
Churn Prediction Response: Set up a Pipedream workflow that utilizes Heedjy's churn prediction capabilities to flag at-risk users, then automatically triggers an email campaign through SendGrid to re-engage them with personalized offers or messages.
Content Personalization Engine: Craft a Pipedream workflow that pulls content performance data from your CMS, analyzes it with Heedjy for engagement patterns, and uses the results to tailor future content recommendations pushed via a Slack bot to your editorial team.
Emit new event when a new app is published. See the documentation
heedjy uses OAuth authentication. When you connect your heedjy account, Pipedream will open a popup window where you can sign into heedjy and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any heedjy API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://app.heedjy.com/api/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.site_id}}
&
client_secret={{custom_fields.secret}}
&
grant_type=client_credentials
POST
https://app.heedjy.com/api/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.site_id}}
&
client_secret={{custom_fields.secret}}
&
grant_type=client_credentials