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.

Document Management Input

Input representation for the document split request.
Root XML tag
<DocumentManagementInput>
JSON example
1{
2    "pageSpecificationList": { 
3        "pageSpecifications": [
4            {
5                "page":1,
6                "rotation":0,
7                "addToTargetFile":"true"
8            },
9            {
10                "page":2,
11                "rotation":0,
12                "addToTargetFile":"true"
13            }
14        ]
15    },
16    "linkedObjectFieldsMap" : {
17        "linkedObjectFields" : {"ReceivedDocumentId" : "0ioxx00000000ODAAY"}
18    },
19    "isOcrRequested" : true
20}
Properties
Name Type Description Required or Optional Available Version
isOcrRequested Boolean Indicates whether OCR is required to process the content document (true) or not (false).
By default, OCR is performed on the first five pages of the content document.

Set this field value to true to perform OCR on all the pages of a content document that contains more than five pages.

Note

Optional 55.0
linkedObjectFieldsMap Map<String, String> Represents the map that contains the linked object fields. For example, the linked object is the Document Checklist Item for Salesforce. Optional 55.0
pageSpecificationList Page Specification List Input[] The page specifications list representation. Required 55.0
targetFileName String The name of the target file that is created from the split document. Optional 55.0