POST api/DEW/DERDocumentPageInsert

Request Information

URI Parameters

None.

Body Parameters

DERDocumentPageInsertRequest
NameDescriptionTypeAdditional information
DocumentNum

integer

None.

KeyNum

integer

None.

KeyType

string

None.

DocumentName

string

None.

DocumentFileName

string

None.

DocumentMimeType

string

None.

SessionNum

integer

None.

SessionPassword

Collection of byte

None.

ApplicationCode

string

None.

StagesURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DocumentNum": 1,
  "KeyNum": 1,
  "KeyType": "sample string 1",
  "DocumentName": "sample string 2",
  "DocumentFileName": "sample string 3",
  "DocumentMimeType": "sample string 4",
  "SessionNum": 5,
  "SessionPassword": "QEA=",
  "ApplicationCode": "sample string 6",
  "StagesURL": "sample string 7"
}

application/xml, text/xml

Sample:
<DERDocumentPageInsertRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <StagesURL>sample string 7</StagesURL>
  <ApplicationCode>sample string 6</ApplicationCode>
  <SessionNum>5</SessionNum>
  <SessionPassword>QEA=</SessionPassword>
  <DocumentFileName>sample string 3</DocumentFileName>
  <DocumentMimeType>sample string 4</DocumentMimeType>
  <DocumentName>sample string 2</DocumentName>
  <DocumentNum>1</DocumentNum>
  <KeyNum>1</KeyNum>
  <KeyType>sample string 1</KeyType>
</DERDocumentPageInsertRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DERDocumentPageInsertResult
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

CreatedDoc

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2",
  "CreatedDoc": 3
}

application/xml, text/xml

Sample:
<DERDocumentPageInsertResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
  <CreatedDoc>3</CreatedDoc>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Success>true</Success>
</DERDocumentPageInsertResult>