POST api/Patient/DetailGui
Request Information
URI Parameters
None.
Body Parameters
PatientDetailGuiRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| idReport | integer |
None. |
|
| reportNumber | string |
None. |
|
| idTransport | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"idReport": 1,
"reportNumber": "sample string 1",
"idTransport": 1
}
application/xml, text/xml
Sample:
<PatientDetailGuiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model"> <Id_Report>1</Id_Report> <Id_Transport>1</Id_Transport> <ReportNumber>sample string 1</ReportNumber> </PatientDetailGuiRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PatientDetailGuiResponse| Name | Description | Type | Additional 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:
<PatientDetailGuiResponse 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> </PatientDetailGuiResponse>