OCRWebService.com provides a web service interfaces (SOAP and REST) which allows you to integrate Optical Character Recognition (OCR) technology into your software products, mobile devices or other web services.
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
The OCR Web Service API on Pipedream allows users to convert scanned documents, images, and PDFs into editable and searchable text formats. Leveraging OCR (Optical Character Recognition) technology, this API is powerful for extracting text data efficiently. On Pipedream, you can integrate OCR Web Service with various other platforms to automate workflows like document management, data entry, and content archiving, enhancing productivity and reducing manual errors across diverse business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ocr_web_service: {
type: "app",
app: "ocr_web_service",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.ocrwebservice.com/restservices/getAccountInformation`,
auth: {
username: `${this.ocr_web_service.$auth.username}`,
password: `${this.ocr_web_service.$auth.license_api_password}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})