POST DMC/PostProcessDocument?identityID={identityID}&cachedDocumentFileName={cachedDocumentFileName}

Executes document post processing for all the registered post processors.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
identityID

The ID of the user that initiated the document upload.

globally unique identifier

Required

cachedDocumentFileName

The full path and name of the temp cached file.

string

Required

Body Parameters

The document metadata.

DocumentMetadata
NameDescriptionTypeAdditional information
ID

globally unique identifier

None.

RequestID

globally unique identifier

None.

DataMartID

globally unique identifier

None.

Size

integer

None.

Name

string

None.

MimeType

string

None.

IsViewable

boolean

None.

Kind

string

None.

CurrentChunkIndex

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ID": "487e25ca-4bc7-4fc1-a11d-5f109c0732cd",
      "RequestID": "716542ef-cdff-476c-9a5b-c1c26115c5ed",
      "DataMartID": "f6d0c2bc-5402-4d65-b445-0a3f2eb932f1",
      "Size": 4,
      "Name": "sample string 5",
      "MimeType": "sample string 6",
      "IsViewable": true,
      "Kind": "sample string 8",
      "CurrentChunkIndex": 9
    }
  ]
}

text/javascript

Sample:
{"results":[{"ID":"487e25ca-4bc7-4fc1-a11d-5f109c0732cd","RequestID":"716542ef-cdff-476c-9a5b-c1c26115c5ed","DataMartID":"f6d0c2bc-5402-4d65-b445-0a3f2eb932f1","Size":4,"Name":"sample string 5","MimeType":"sample string 6","IsViewable":true,"Kind":"sample string 8","CurrentChunkIndex":9}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<DocumentMetadata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO.DataMartClient.Criteria">
  <CurrentChunkIndex>9</CurrentChunkIndex>
  <DataMartID>f6d0c2bc-5402-4d65-b445-0a3f2eb932f1</DataMartID>
  <ID>487e25ca-4bc7-4fc1-a11d-5f109c0732cd</ID>
  <IsViewable>true</IsViewable>
  <Kind>sample string 8</Kind>
  <MimeType>sample string 6</MimeType>
  <Name>sample string 5</Name>
  <RequestID>716542ef-cdff-476c-9a5b-c1c26115c5ed</RequestID>
  <Size>4</Size>
</DocumentMetadata>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.