POST api/Patient/ListGui

Request Information

URI Parameters

None.

Body Parameters

PatientListGuiRequest
NameDescriptionTypeAdditional information
lastHours

integer

None.

maxResults

integer

None.

isCreator

boolean

None.

isDestination

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "lastHours": 1,
  "maxResults": 2,
  "isCreator": true,
  "isDestination": true
}

application/xml, text/xml

Sample:
<PatientListGuiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model">
  <IsCreator>true</IsCreator>
  <IsDestination>true</IsDestination>
</PatientListGuiRequest>

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

Response Information

Resource Description

PatientListGuiResponse
NameDescriptionTypeAdditional information
url

string

None.

mesasge

string

None.

isSuccess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "url": "sample string 1",
  "mesasge": "sample string 2",
  "isSuccess": true
}

application/xml, text/xml

Sample:
<PatientListGuiResponse 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 2</Mesasge>
  <Url xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">sample string 1</Url>
</PatientListGuiResponse>