with Finmo and PDF4me?
Convert a document (e.g., DOCX, XLSX, PPTX) to PDF. See the documentation
Merge multiple PDF files into a single PDF. See the documentation
The Finmo API allows for the automation of financial monitoring and transactions. By leveraging the API on Pipedream, you can create serverless workflows to trigger actions based on financial events, synchronize data across multiple platforms, and generate reports or notifications. Pipedream's ability to connect with a vast array of services means you can integrate Finmo with other financial tools, CRMs, or communication platforms, creating a highly personalized and automated financial management system.
import { 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdf4me: {
type: "app",
app: "pdf4me",
}
},
async run({steps, $}) {
const data = {
"webUrl": `https://www.pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.pdf4me.com/api/v2/ConvertUrlToPdf`,
headers: {
"authorization": `${this.pdf4me.$auth.api_key}`,
},
data,
})
},
})