POST api/Download/UploadNotificationLetters

Request Information

URI Parameters

None.

Body Parameters

DocumentUploadModel
NameDescriptionTypeAdditional information
IsRequestMoreInformation

boolean

None.

DocumentNames

string

None.

CaseNumber

string

None.

CaseId

globally unique identifier

None.

RecipientInformations

Collection of RecipientInformationModel

None.

Request Formats

application/json, text/json

Sample:
{
  "IsRequestMoreInformation": true,
  "DocumentNames": "sample string 2",
  "CaseNumber": "sample string 3",
  "CaseId": "2a740ba9-2ebc-454f-9795-1f06877eb42b",
  "RecipientInformations": [
    {
      "CaseId": "a97c01d1-5b05-43cd-8726-2038d1c75d35",
      "Contact": "sample string 2",
      "CreatedBy": "sample string 3",
      "CreatedDate": "2026-04-01T22:38:44.5761955+00:00",
      "DocumentName": "sample string 5",
      "DrugId": 6,
      "IsBatchPrint": true,
      "IsPrinted": true,
      "Medium": "sample string 9",
      "Recipient": "sample string 10",
      "RejectionCode": 11,
      "Type": "sample string 12"
    },
    {
      "CaseId": "a97c01d1-5b05-43cd-8726-2038d1c75d35",
      "Contact": "sample string 2",
      "CreatedBy": "sample string 3",
      "CreatedDate": "2026-04-01T22:38:44.5761955+00:00",
      "DocumentName": "sample string 5",
      "DrugId": 6,
      "IsBatchPrint": true,
      "IsPrinted": true,
      "Medium": "sample string 9",
      "Recipient": "sample string 10",
      "RejectionCode": 11,
      "Type": "sample string 12"
    }
  ]
}

application/xml, text/xml

Sample:
<DocumentUploadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DocumentManagementService.DomainModels.Documents">
  <CaseId>2a740ba9-2ebc-454f-9795-1f06877eb42b</CaseId>
  <CaseNumber>sample string 3</CaseNumber>
  <DocumentNames>sample string 2</DocumentNames>
  <IsRequestMoreInformation>true</IsRequestMoreInformation>
  <RecipientInformations>
    <RecipientInformationModel>
      <CaseId>a97c01d1-5b05-43cd-8726-2038d1c75d35</CaseId>
      <Contact>sample string 2</Contact>
      <CreatedBy>sample string 3</CreatedBy>
      <CreatedDate>2026-04-01T22:38:44.5761955+00:00</CreatedDate>
      <DocumentName>sample string 5</DocumentName>
      <DrugId>6</DrugId>
      <IsBatchPrint>true</IsBatchPrint>
      <IsPrinted>true</IsPrinted>
      <Medium>sample string 9</Medium>
      <Recipient>sample string 10</Recipient>
      <RejectionCode>11</RejectionCode>
      <Type>sample string 12</Type>
    </RecipientInformationModel>
    <RecipientInformationModel>
      <CaseId>a97c01d1-5b05-43cd-8726-2038d1c75d35</CaseId>
      <Contact>sample string 2</Contact>
      <CreatedBy>sample string 3</CreatedBy>
      <CreatedDate>2026-04-01T22:38:44.5761955+00:00</CreatedDate>
      <DocumentName>sample string 5</DocumentName>
      <DrugId>6</DrugId>
      <IsBatchPrint>true</IsBatchPrint>
      <IsPrinted>true</IsPrinted>
      <Medium>sample string 9</Medium>
      <Recipient>sample string 10</Recipient>
      <RejectionCode>11</RejectionCode>
      <Type>sample string 12</Type>
    </RecipientInformationModel>
  </RecipientInformations>
</DocumentUploadModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.