{ "opencollection": "1.0.0", "info": { "name": "UiPath Automation Hub Alerts Extraction API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Extraction", "type": "folder" }, "items": [ { "info": { "name": "UiPath Start Asynchronous Document Extraction", "type": "http" }, "http": { "method": "POST", "url": "https://cloud.uipath.com/{orgName}/{tenantName}/automationhub_/api/v1/projects/:projectId/extraction/start", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Unique identifier of the Document Understanding project" }, { "name": "api-version", "value": "1.0.0", "type": "query", "description": "API version to use for this request" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Submits a previously digitized document for asynchronous data extraction. The extractors to apply and the document type must be specified in the request body. Returns a requestId to poll for results. Results are retained for 24 hours. Use GET /extraction/{requestId}/result to retrieve extracted field values once processing completes." }, { "info": { "name": "UiPath Get Asynchronous Extraction Result", "type": "http" }, "http": { "method": "GET", "url": "https://cloud.uipath.com/{orgName}/{tenantName}/automationhub_/api/v1/projects/:projectId/extraction/:requestId/result", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Unique identifier of the Document Understanding project" }, { "name": "requestId", "value": "", "type": "path", "description": "Unique identifier of the asynchronous job request to retrieve results for" }, { "name": "api-version", "value": "1.0.0", "type": "query", "description": "API version to use for this request" } ] }, "docs": "Retrieves the result of an asynchronous extraction request by its requestId. The job status can be NotStarted, Running, Failed, or Succeeded. Poll this endpoint until the status is Succeeded or Failed. Returns extracted field values with associated confidence scores. Results are available for 24 hours from the time the job completed." } ] } ], "bundled": true }