POST DMCS/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.

DMCSResponseDocument
NameDescriptionTypeAdditional information
DocumentID

globally unique identifier

None.

RevisionSetID

globally unique identifier

None.

ResponseID

globally unique identifier

None.

RequestID

globally unique identifier

None.

DataMartID

globally unique identifier

None.

FileName

string

None.

Length

integer

None.

MimeType

string

None.

CurrentChunk

integer

None.

TotalChunks

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "DocumentID": "103e448a-6deb-429c-a52c-05846ff57b82",
      "RevisionSetID": "cb3b2f7b-8fa8-4fda-a9ab-224614730e1a",
      "ResponseID": "88e80adc-5de5-4551-a450-af62afa949d9",
      "RequestID": "021638c4-70a3-4393-94f8-2835c038775f",
      "DataMartID": "ce97a534-c670-4dcc-ac38-a1a28f44e3ce",
      "FileName": "sample string 6",
      "Length": 7,
      "MimeType": "sample string 8",
      "CurrentChunk": 9,
      "TotalChunks": 10
    }
  ]
}

text/javascript

Sample:
{"results":[{"DocumentID":"103e448a-6deb-429c-a52c-05846ff57b82","RevisionSetID":"cb3b2f7b-8fa8-4fda-a9ab-224614730e1a","ResponseID":"88e80adc-5de5-4551-a450-af62afa949d9","RequestID":"021638c4-70a3-4393-94f8-2835c038775f","DataMartID":"ce97a534-c670-4dcc-ac38-a1a28f44e3ce","FileName":"sample string 6","Length":7,"MimeType":"sample string 8","CurrentChunk":9,"TotalChunks":10}]}

application/bson

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

application/xml, text/xml

Sample:
<DMCSResponseDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO.DMCS">
  <CurrentChunk>9</CurrentChunk>
  <DataMartID>ce97a534-c670-4dcc-ac38-a1a28f44e3ce</DataMartID>
  <DocumentID>103e448a-6deb-429c-a52c-05846ff57b82</DocumentID>
  <FileName>sample string 6</FileName>
  <Length>7</Length>
  <MimeType>sample string 8</MimeType>
  <RequestID>021638c4-70a3-4393-94f8-2835c038775f</RequestID>
  <ResponseID>88e80adc-5de5-4551-a450-af62afa949d9</ResponseID>
  <RevisionSetID>cb3b2f7b-8fa8-4fda-a9ab-224614730e1a</RevisionSetID>
  <TotalChunks>10</TotalChunks>
</DMCSResponseDocument>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.