with Docparser and Acuity Scheduling?
Emit new event every time a document is processed and parsed data is available. See the documentation
Emit new event when an appointment is scheduled.
Emit new event when an appointment is canceled.
Emit new event when an appointment is rescheduled.
Fetches a document from a provided URL and imports it to Docparser for parsing. See the documentation
Blocks a specific time slot on your schedule to prevent the scheduling of any appointments during this particular time range. See the documentation
Uploads a document to docparser that initiates parsing immediately after reception. See the documentation
Validate available times for an appointment. 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: ``, }, }) }, }) Acuity Scheduling API allows you to tap into the functionality of Acuity Scheduling, a cloud-based appointment scheduling software. With this API on Pipedream, you can automate appointment creation, modifications, and cancellations, as well as sync customer data across your tech stack. The API lets you fetch detailed information about schedules, available time slots, and calendar events. Create dynamic, real-time integrations with CRMs, email marketing platforms, or payment gateways to streamline your scheduling and business processes.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { acuity_scheduling: { type: "app", app: "acuity_scheduling", } }, async run({steps, $}) { return await axios($, { url: `https://acuityscheduling.com/api/v1/me`, headers: { Authorization: `Bearer ${this.acuity_scheduling.$auth.oauth_access_token}`, }, }) }, })