Our mission is to simplify payments and empower businesses and consumers to transact with relevant payment methods.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
finmo: {
type: "app",
app: "finmo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.finmo.net/v1/customer?type=individual`,
auth: {
username: `${this.finmo.$auth.access_key}`,
password: `${this.finmo.$auth.secret_key}`,
},
})
},
})
Finmo uses API keys for authentication. When you connect your Finmo account, Pipedream securely stores the keys so you can easily authenticate to Finmo APIs in both code and no-code steps.
To retrieve your API keys,