POST api/Patient/GetMessageStatusUnread

Request Information

URI Parameters

None.

Body Parameters

PatientGetMessageStatusUnreadRequest
NameDescriptionTypeAdditional information
interventionNumbers

Collection of string

None.

reportNumbers

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "interventionNumbers": [
    "sample string 1",
    "sample string 2"
  ],
  "reportNumbers": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<PatientGetMessageStatusUnreadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model">
  <InterventionNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </InterventionNumbers>
  <ReportNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ReportNumbers>
</PatientGetMessageStatusUnreadRequest>

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 'PatientGetMessageStatusUnreadRequest'.

Response Information

Resource Description

PatientGetMessageStatusUnreadResponse
NameDescriptionTypeAdditional information
InterventionNumbers

Collection of string

None.

ReportNumbers

Collection of string

None.

mesasge

string

None.

isSuccess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "InterventionNumbers": [
    "sample string 1",
    "sample string 2"
  ],
  "ReportNumbers": [
    "sample string 1",
    "sample string 2"
  ],
  "mesasge": "sample string 1",
  "isSuccess": true
}

application/xml, text/xml

Sample:
<PatientGetMessageStatusUnreadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">true</IsSuccess>
  <Mesasge xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">sample string 1</Mesasge>
  <InterventionNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </InterventionNumbers>
  <ReportNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ReportNumbers>
</PatientGetMessageStatusUnreadResponse>