POST api/Logging/LogMailDocDownload

Log mail document download

Request Information

URI Parameters

None.

Body Parameters

DocumentDownload
NameDescriptionTypeAdditional information
UserID

integer

None.

FileID

integer

None.

MedicalAidID

integer

None.

DocumentTypeID

integer

None.

DocumentFileName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "FileID": 2,
  "MedicalAidID": 3,
  "DocumentTypeID": 4,
  "DocumentFileName": "sample string 5"
}

application/xml, text/xml

Sample:
<DocumentDownload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.Parameters">
  <DocumentFileName>sample string 5</DocumentFileName>
  <DocumentTypeID>4</DocumentTypeID>
  <FileID>2</FileID>
  <MedicalAidID>3</MedicalAidID>
  <UserID>1</UserID>
</DocumentDownload>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DocumentDownload'.

Response Information

Resource Description

JsonResultOfString
NameDescriptionTypeAdditional information
Content

string

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.