The Platform.ly API allows for deep integration with your marketing automation, CRM, and business intelligence data. Within Pipedream, you can leverage this API to automate workflows, sync data with other services, trigger actions based on customer interactions, and analyze business metrics. The seamless connection with Pipedream opens up possibilities for enriching customer profiles, managing campaigns, and driving analytics-driven decisions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
platform_ly: {
type: "app",
app: "platform_ly",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.platform_ly.$auth.api_key}`,
"action": `profile`,
"value": `{}`,
}
return await axios($, {
method: "post",
url: `https://api.platform.ly/`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})
Automated Contact Tagging Based on Activity: When a user completes an action on your website, like downloading a white paper, you can use the Platform.ly API to tag that contact automatically. Connect this action to a webhook in Pipedream to listen for the event and then call the Platform.ly API to update the contact's tags.
Sync Contacts with a Third-Party Service: If you're using a third-party service like Mailchimp in tandem with Platform.ly, you can sync contacts between the two. Set up a workflow in Pipedream that triggers periodically, fetches contacts from Platform.ly using their API, and updates or adds those contacts to a Mailchimp audience.
Lead Scoring Based on Engagement: Create a Pipedream workflow that scores leads based on their engagement with your emails or website. Use the Platform.ly API to fetch interaction data and apply your scoring logic. Based on the score, update the lead's status in Platform.ly, or trigger further actions like sending a personalized email or notification to your sales team.
Platform.ly uses API keys for authentication. When you connect your Platform.ly account, Pipedream securely stores the keys so you can easily authenticate to Platform.ly APIs in both code and no-code steps.
To retrieve your API Key,