Connecting to Google Cloud Document AI

Did anyone Succeeded in Connecting to Google Cloud Document AI? if yes Can you please provide details?

Hi @Teja_sri1,

Yes, it works, but UiPath does not have a native activity for Google Cloud Document AI. The correct way is to integrate it via API.

Create a service account in Google Cloud, enable Document AI API, and generate a JSON key. In UiPath, use HTTP Request activity. Authenticate using OAuth2 with the service account (JWT flow), get an access token, then call the Document AI process endpoint with the document (base64 encoded PDF) and processor ID. Parse the JSON response to extract fields.

Thanks & Happy Automation