Parseur

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.

Integrate the Parseur API with the Formatting API

Setup the Parseur API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Parseur and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Document Not Processed from Parseur API
Parseur + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Document Processed (With List Items) from Parseur API
Parseur + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Document Processed from Parseur API
Parseur + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Mailbox Created from Parseur API
Parseur + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Table Processed from Parseur API
Parseur + Formatting
 
Try it
New Document Not Processed from the Parseur API

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.

 
Try it
New Document Processed from the Parseur API

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.

 
Try it
New Document Processed (With List Items) from the Parseur API

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.

 
Try it
New Mailbox Created from the Parseur API

Emit new event when a new mailbox is created. See the docs.

 
Try it
New Table Processed from the Parseur API

Emit new event when a new table is processed. See the docs.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Parseur

Parseur 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.

Connect Parseur

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})