Nordigen is a global account data analytics company helping banks and lenders improve the speed and accuracy of their credit decisions.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
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
Find issues and pull requests by state and keyword. See docs here
What You Can Build with the Nordigen API
The Nordigen API allows developers to easily access financial data and use it
to build the solutions their customers need. With the Nordigen API, you can
build innovative solutions such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nordigen: {
type: "app",
app: "nordigen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ob.nordigen.com/api/v2/institutions/`,
headers: {
Authorization: `Bearer ${this.nordigen.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})