Parseur is the most powerful and user-friendly mail parser. A data extraction tool to automatically extract text from your emails, pdfs, and other documents.
Go to siteParseur is a powerful email parsing tool that automates the extraction of data from emails and documents. With its API, you can unlock the data trapped in emails and documents and transform it into structured data. On Pipedream, you can use Parseur to trigger workflows from parsed email data, connecting it to hundreds of other services for endless automation possibilities. This can streamline business processes like lead management, invoice processing, and data entry by automating the extraction and flow of critical information.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
parseur: {
type: "app",
app: "parseur",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.parseur.com/parser`,
headers: {
"Authorization": `Token ${this.parseur.$auth.api_token}`,
},
})
},
})
Email Lead Capture to CRM: Automatically extract lead information from incoming emails using Parseur, and then add new leads to your CRM system like Salesforce or HubSpot. This ensures that potential clients are immediately captured in your sales pipeline without manual data entry.
Invoice Processing to Accounting Software: Parse invoice data from email attachments with Parseur, and then forward the structured data to accounting software like QuickBooks or Xero. This workflow can help with quick updates of accounts payable and receivable, improving financial operations.
Support Ticket Creation from Customer Emails: Convert support requests received via email into structured data using Parseur, and then create tickets in a helpdesk system like Zendesk or Jira Service Desk. This automates the ticketing process, ensuring timely and organized responses to customer inquiries.
Emit new event when a new document is not processed. It is triggered when a document fails to process with status New Template Needed
. See the docs.
Emit new event when a new document is processed. It is useful for endpoints that don't support deep JSON structures as it will flatten your table fields. See the docs.
Emit new event when a new document is processed with list items. The payload format is the same as when viewing the document and clicking on view as JSON
. See the docs.
Parseur uses API keys for authentication. When you connect your Parseur account, Pipedream securely stores the keys so you can easily authenticate to Parseur APIs in both code and no-code steps.
Parseur API uses a token-based authentication.
You will find your API Token Key in your Account Overview.