Retrieves the extracted information from the provider, along with mapped fields and templates.
Tenant name
Document ID
Instance URL
Record type
User ID
User name
OK
Project ID
Document ID
Job ID
Record type
Boolean indicating if a provision map was found
A possibly empty array of strings with tags that were assigned to the field instances
Integer identifier of user who red-flagged the field instance
Name of the field
URL for viewing the field instance in the AI engine's UI
A two-integer array indicating the document pages the field instance starts and ends on (inclusive).
Boolean indicating if a field instance is red-flagged
An array of text ranges where this field instance text occurs in the document. Each element consists of two integers representing the start (inclusive) and end (exclusive) of the range, in characters from the start of the file.
Integer identifier of the field instance
Integer identifier of the field
Text of the field instance
An array of objects and fields this provision maps to
An array of template IDs this provision maps to
curl --request GET \--url https://idd_url/idd/api/v2/tenantId/analyze/docinfo \--header 'Accept: application/json' \--header 'X-API-Key: 123'
1{2"projectId": "625",3"documentId": "82736",4"jobId": "43325",5"recordType": "NDA",6"foundProvisionMap": true,7"extractedProvisions": [8{9"tags": [10"string"11],12"flag_user_id": 0,13"field_name": "string",14"field_instance_url": "string",15"page_range": [16017],18"is_flagged": true,19"text_ranges": [20[21022]23],24"field_instance_id": 0,25"field_id": 0,26"text": "string",27"mappedFields": [28{29"objectName": "string",30"congaField": "string"31}32],33"mappedClauses": [34{35"congaTemplateId": "string"36}37]38}39]40}