Service IDP - Execution Result - Retrieve
Get an execution of a published action by a given action Id, action version and execution Id
Equivalent to getDocumentActionExecution'
Usage:
Retrieve the Results of any Execution
After a document action successfully processes a document, or after a reviewer verifies and submits a document queued for review, the results are available for consumption.
When you query the results of an execution, the IDP API returns any of the following statuses:
ACKNOWLEDGED: The document action execution request was received.IN_PROGRESS: The execution started.RESULTS_PENDING: The execution finished and IDP is processing the results.MANUAL_VALIDATION_REQUIRED: The execution finished but the results need manual validation.FAILED: The execution request finished unsuccessfully.PARTIAL_SUCCESS: The execution request finished but some sub-tasks failed.SUCCEEDED: The execution request finished successfully.
Configuration:


Underlying API:
Retrieves the State & Result Data of a specific document action execution.
See getDocumentActionExecutionResult https://docs.mulesoft.com/idp/automate-document-processing-with-the-idp-api#retrieve-the-results-of-the-execution After a document action successfully processes a document, or after a reviewer verifies and submits a document queued for review, the results are available for consumption. When you use the IDP API to execute your document actions, retrieve the results by calling the /executions endpoint and providing an executionId, Example URL: https://idp-rt.us-east-1.anypoint.mulesoft.com/api/v1/organizations/01f79c97-9a83-4194-b922-15b64fd7305e/actions/c333413d-6593-4423-b3d4-f8ff4bf88917/versions/1.2.0/executions/ba9c0735-c95c-4d92-84f1-d72599900552
MuleSoft Connected App using OAuth 2.0 Client Credentials flow.
Requires client_id and client_secret from a configured Connected App with appropriate IDP scopes/permissions.
See: Configure Connected Apps
Token Request Example:
curl --location --request POST 'https://{mulesoftAnypointRegion}/accounts/api/v2/oauth2/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant_type": "client_credentials",
"client_id": "<your-connected-app-client-id>",
"client_secret": "<your-connected-app-client-secret>"
}'
Your Anypoint Organisation ID (UUID). See: Find your Organization ID.
01f79c97-9a83-4194-b922-15b64fd7305eThe unique identifier (UUID) of the published Document Action.
90c3e286-72b5-42ca-92d0-22f86ea8d766The semantic version of the Document Action (e.g., 1.0.0, 1.1.0).
1.1.0The unique identifier (UUID) for a document processing execution, returned after successful submission.
022c61de-9bfc-4a94-8a9c-43c5f8ac153eOnly keep the extracted value of the given field, remove confidenceScore and geometry from the response body
trueSuccess
Internal Server Error
Last updated