@flatfile/plugin-pdf-extractor
v0.6.1
Published
A plugin for parsing PDF files in Flatfile.
Readme
This plugin will parse a data table in a PDF file and extract it into Flatfile.
Event Type:
listener.on('file:created')
When embedding Flatfile, this plugin should be deployed in a server-side listener. Learn more
Parameters
opt.apiKey - string - (required)
The apiKey parameter specifies you pdftables.com API key.
opt.debug - boolean
The debug parameter lets you toggle on/off helpful debugging messages for
development purposes.
API Calls
api.files.upload
Usage
A subscription to pdftables.com is required for this plugin to work. Create an API key there and use it below.
npm i @flatfile/plugin-pdf-extractorimport { pdfExtractorPlugin } from "@flatfile/plugin-pdf-extractor";JavaScript
listener.js
export default function (listener) {
listener.use(pdfExtractorPlugin({ apiKey: "key" }));
}TypeScript
listener.ts
export default function (listener: FlatfileListener) {
listener.use(pdfExtractorPlugin({ apiKey: "key" }));
}