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.
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.
Adds an existing contact to an existing campaign. See the documentation
Adds an existing lead to an existing campaign. See the documentation
Converts a SOAP XML Object received from Salesforce to JSON
Creates an Attachment on a parent object. See the documentation
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.
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}`,
},
})
},
})
The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesforce_rest_api: {
type: "app",
app: "salesforce_rest_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`,
headers: {
Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`,
},
})
},
})