The Nordigen product has now been relaunched as GoCardless Bank Account Data.
Create a requisition link and id to be used in other Nordigen actions. See the docs
Delete requisition and its end user agreement. See the docs
Get the balances of a Nordigen account. See the docs
Get the details of a Nordigen account. See the docs
Get the metadata of a Nordigen account. See the docs
The GoCardless Bank Account Data API furnishes you with the ability to access enriched banking data, enabling the creation of financial insights and streamlining customer verification processes. By integrating this API with Pipedream, you can automate various tasks involving bank account transactions and customer data analysis. For instance, you might set up workflows to monitor transactions for accounting purposes, verify customer account details for KYC compliance, or aggregate financial data to provide personalized financial advice.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nordigen: {
type: "app",
app: "nordigen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bankaccountdata.gocardless.com/api/v2/institutions/`,
headers: {
Authorization: `Bearer ${this.nordigen.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})