POST api/Patient/MessageGui

Request Information

URI Parameters

None.

Body Parameters

PatientMessageGuiRequest
NameDescriptionTypeAdditional information
interventionNumber

string

None.

reportNumber

string

None.

Request Formats

application/json, text/json

Sample:
{
  "interventionNumber": "sample string 1",
  "reportNumber": "sample string 2"
}

application/xml, text/xml

Sample:
<PatientMessageGuiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model">
  <InterventionNumber>sample string 1</InterventionNumber>
  <ReportNumber>sample string 2</ReportNumber>
</PatientMessageGuiRequest>

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

Response Information

Resource Description

PatientMessageGuiResponse
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:
<PatientMessageGuiResponse 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>
</PatientMessageGuiResponse>