with Rippling and AskYourPDF?
Emit new event when a new worker is created in Rippling. See the documentation
Add a document via file upload. See the documentation
Retrieves a list of all companies from Rippling. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rippling: {
type: "app",
app: "rippling",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.ripplingapis.com`,
headers: {
Authorization: `Bearer ${this.rippling.$auth.api_key}`,
},
})
},
})
AskYourPDF API allows you to extract text and data from PDF files programmatically. On Pipedream, leverage this API to automate workflows involving PDF data extraction, such as parsing invoices, extracting data for reports, or importing information into a database. With Pipedream's ability to integrate with various apps, you can create workflows that trigger on specific events and handle extracted PDF data with custom logic and actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
askyourpdf: {
type: "app",
app: "askyourpdf",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.askyourpdf.com/v1/api/documents`,
headers: {
"x-api-key": `${this.askyourpdf.$auth.api_key}`,
},
})
},
})