with OCR Web Service and Microsoft Dataverse?
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_dataverse: {
type: "app",
app: "microsoft_dataverse",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.microsoft_dataverse.$auth.environment_url}/api/data/v9.2/WhoAmI`,
headers: {
Accept: `application/json`,
Authorization: `Bearer ${this.microsoft_dataverse.$auth.oauth_access_token}`,
"OData-MaxVersion": `4.0`,
"OData-Version": `4.0`,
"Accept": `application/json`,
},
})
},
})