GET /predict-api/api/extraction/{objectId}
As of Version | product version 2022 Winter |
---|---|
Request Method | GET |
Response Format | JSON |
Description | Retrieves a metadata extraction prediction for the binary content file of a single object identified by its The property IDs will be returned according to the inference schema along with their probability in percentage (level of confidence) in the The response JSON further contains the |
Request Header | Content-Type: application/json X-ID-TENANT-NAME: tenant_name |
Request Example | /predict-api/api/extraction/da20c2fb-8071-45e9-b4bf-2af376cdf9b6 |
Result Example | { "predictions": [{ "properties": { "appAIInvoice:aiiCompanyName": [ { "value": "Lufthansa", "probability": 99.24, "boundingBox": [ 403, 729, 61, 14 ], "page": 0 }, { "value": "AKG Thermotechnik International GmbH & Co.KG", "probability": 93.24, "boundingBox": [ 413, 224, 93, 14 ], "page": 1 } ], "appAIInvoice:aiiIssueDateTime": [ { "value": "2018-01-26T15:21:170Z", "probability": 85.12, "boundingBox": [ 213, 234, 76, 14 ], "page": 1 } ] }, "system:objectId": "da20c2fb-8071-45e9-b4bf-2af376cdf9b6", "predictionId": 188 }] } |