Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Process Received Document Action
This action is available in API version 59.0 and later.
Special Access Rules
The Document Checklist and Intelligent Document Workspace permission set licenses are required to access the Process Received Document action.
Supported REST HTTP Methods
- URI
- /services/data/v67.0/actions/standard/processReceivedDocument
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| additionalFields |
|
| documentTypeId |
|
| ignoreFieldValueConflict |
|
| objectApiName |
|
| overrideConfidenceScoreThreshold |
|
| receivedDocumentId |
|
| recordTypeId |
|
| templateApiName |
|
Outputs
| Output | Details |
|---|---|
| recordId |
|
Example
- POST
-
Here’s a sample request for the Process Received Document action.
1{ 2 "inputs" : [ 3 { 4 "receivedDocumentId" : "0ioRM00000002nPYAQ", 5 "objectApiName" : "Demo__c", 6 "templateApiName" : "InsuranceCard", 7 "recordTypeId" : "012RM0000005c7bYAA", 8 "documentTypeId" : "0deRM00000000GnYAI" 9 } 10 ] 11}Here’s a sample response for the Process Received Document action.
1[ 2 { 3 "actionName": "processReceivedDocument", 4 "errors": null, 5 "isSuccess": true, 6 "outputValues": { 7 "recordId": "a00RM000001DZ6ZYAW" 8 } 9 } 10]