POST api/WestcorTMPOrder/DeliverDocuments

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Login": {
    "Username": "sample string 1",
    "Password": "sample string 2",
    "<SerializeSensitiveInfo>k__BackingField": true
  },
  "TmpFileId": 1,
  "DeliverDocuments": [
    {
      "OrderDocumentID": 1,
      "DocumentName": "sample string 2",
      "RelativePath": "sample string 3"
    },
    {
      "OrderDocumentID": 1,
      "DocumentName": "sample string 2",
      "RelativePath": "sample string 3"
    },
    {
      "OrderDocumentID": 1,
      "DocumentName": "sample string 2",
      "RelativePath": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<WestcorDeliverDocumentsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Hub">
  <DeliverDocuments>
    <DocumentDelivery>
      <DocumentName>sample string 2</DocumentName>
      <OrderDocumentID>1</OrderDocumentID>
      <RelativePath>sample string 3</RelativePath>
    </DocumentDelivery>
    <DocumentDelivery>
      <DocumentName>sample string 2</DocumentName>
      <OrderDocumentID>1</OrderDocumentID>
      <RelativePath>sample string 3</RelativePath>
    </DocumentDelivery>
    <DocumentDelivery>
      <DocumentName>sample string 2</DocumentName>
      <OrderDocumentID>1</OrderDocumentID>
      <RelativePath>sample string 3</RelativePath>
    </DocumentDelivery>
  </DeliverDocuments>
  <Login>
    <Password>sample string 2</Password>
    <Username>sample string 1</Username>
    <_x003C_SerializeSensitiveInfo_x003E_k__BackingField>true</_x003C_SerializeSensitiveInfo_x003E_k__BackingField>
  </Login>
  <TmpFileId>1</TmpFileId>
</WestcorDeliverDocumentsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "DeliverDocumentsResponse": {
    "Message": "sample string 1",
    "ResponseCode": 2
  }
}

application/xml, text/xml

Sample:
<WestcorDeliverDocumentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Hub">
  <DeliverDocumentsResponse>
    <Message>sample string 1</Message>
    <ResponseCode>2</ResponseCode>
  </DeliverDocumentsResponse>
</WestcorDeliverDocumentsResponse>