Patreon is the best place for creators to build memberships by providing exclusive access to their work and a deeper connection with their communities.
Pipedream's integration with the Patreon API enables creators to automate interactions with their patrons, manage memberships, and streamline content delivery. By leveraging Pipedream's ability to connect with hundreds of apps, creators can set up custom workflows that trigger actions based on Patreon events, like new pledges, or that perform regular tasks, like sending messages to patrons.
import axios from "axios"
export default defineComponent({
props: {
patreon: {
type: "app",
app: "patreon",
}
},
async run({steps, $}) {
const resp = await axios({
url: `https://www.patreon.com/api/oauth2/v2/identity?fields%5Buser%5D=email,full_name`,
headers: {
Authorization: `Bearer ${this.patreon.$auth.oauth_access_token}`,
"Content-Type": `application/x-www-form-urlencoded`,
},
})
return resp.data
},
})
The Wise API enables seamless integration of international bank transfers into applications, offering real-time currency exchange rates, multi-currency account management, and compliance checks. With Pipedream, you can leverage Wise to automate financial workflows, sync transaction data with accounting software, and trigger actions based on payment events, all while maintaining security and reducing the manual overhead often involved in international finances.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wise: {
type: "app",
app: "wise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transferwise.com/v1/profiles`,
headers: {
Authorization: `Bearer ${this.wise.$auth.api_token}`,
},
})
},
})