with Docparser and Airtable?
Emit new event every time a document is processed and parsed data is available. See the documentation
Emit new event when a field is created in the selected table. See the documentation
Emit new event when a field is created or updated in the selected table
Emit new event for each new or modified record in a table or view
Emit new event for each new or modified record in a view
Fetches a document from a provided URL and imports it to Docparser for parsing. See the documentation
Uploads a document to docparser that initiates parsing immediately after reception. See the documentation
Create one or more records in a table in a single operation with an array. See the documentation
Docparser is a tool for extracting data from documents, such as PDFs, Word, and images. With the Docparser API, you can automate the process of capturing data without manual entry, transforming documents into actionable information. It shines in scenarios where structured information needs to be pulled from files that typically require manual data entry, such as invoices, forms, and reports.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { docparser: { type: "app", app: "docparser", } }, async run({steps, $}) { return await axios($, { url: `https://api.docparser.com/v1/ping`, auth: { username: `${this.docparser.$auth.api_key}`, password: ``, }, }) }, })
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { airtable_oauth: { type: "app", app: "airtable_oauth", } }, async run({steps, $}) { return await axios($, { url: `https://api.airtable.com/v0/meta/whoami`, headers: { Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`, }, }) }, })