Marketing funnels made easy.
Emit new event when a new message is posted to one or more channels
Emit new event when a fresh or formerly anonymous contact is identified via email address or contact number.
Emit new event when a one-time order gets paid by a customer.
Emit new event when a subscription fee is paid by a customer.
Send a message to a user, group, private channel or public channel. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Send a message as a threaded reply. See postMessage or scheduleMessage docs here
Removes a specified tag from a contact. This action will take no effect if the specified tag doesn't exist on the contact. See the documentation
The ClickFunnels API lets you interact programmatically with your ClickFunnels account, giving you control over your funnels, contacts, purchases, and more. With Pipedream, you can automate workflows that respond to a variety of triggers, such as new contacts or purchases. By connecting ClickFunnels with other apps available on Pipedream, you can streamline your sales process, sync data across platforms, and create powerful marketing automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clickfunnels: {
type: "app",
app: "clickfunnels",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.clickfunnels.$auth.subdomain}.myclickfunnels.com/api/v2/teams`,
headers: {
Authorization: `Bearer ${this.clickfunnels.$auth.api_access_token}`,
},
})
},
})
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.
The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slack: {
type: "app",
app: "slack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
},
})
},
})