with Azure Storage and ClickFunnels?
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation
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 new blob is created to a specified container in Azure Storage. See the documentation
Emit new event when a subscription fee is paid by a customer.
Creates a new container under the specified account. If a container with the same name already exists, the operation fails. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation
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
Uploads a new blob to a specified container in Azure Storage. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_storage: {
type: "app",
app: "azure_storage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.azure_storage.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})