POST api/Patient/GetStatus
Request Information
URI Parameters
None.
Body Parameters
PatientGetStatusRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| lastStatusId | integer |
None. |
|
| lastCreatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"lastStatusId": 1,
"lastCreatedDate": "2025-12-11T02:50:45.0038691+01:00"
}
application/xml, text/xml
Sample:
<PatientGetStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Patient.Model" />
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PatientGetStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| patientStatuses | Collection of PatientStatus |
None. |
|
| mesasge | string |
None. |
|
| isSuccess | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"patientStatuses": [
{
"id": 1,
"reportId": "sample string 2",
"idTransport": 1,
"deliveryInstructions": "sample string 3",
"acceptPatientConfirmation": true,
"acceptPatientConfirmationRole": "sample string 5",
"acceptPatientConfirmationName": "sample string 6",
"acceptPatientConfirmationWorkUnitName": "sample string 7",
"created": "2025-12-11T02:50:45.0038691+01:00"
},
{
"id": 1,
"reportId": "sample string 2",
"idTransport": 1,
"deliveryInstructions": "sample string 3",
"acceptPatientConfirmation": true,
"acceptPatientConfirmationRole": "sample string 5",
"acceptPatientConfirmationName": "sample string 6",
"acceptPatientConfirmationWorkUnitName": "sample string 7",
"created": "2025-12-11T02:50:45.0038691+01:00"
}
],
"mesasge": "sample string 1",
"isSuccess": true
}
application/xml, text/xml
Sample:
<PatientGetStatusResponse 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>
<PatientStatuses>
<PatientStatus>
<AcceptPatient>true</AcceptPatient>
<AcceptPatientFullName>sample string 6</AcceptPatientFullName>
<AcceptPatientRole>sample string 5</AcceptPatientRole>
<AcceptPatientWorkUnitName>sample string 7</AcceptPatientWorkUnitName>
<Created>2025-12-11T02:50:45.0038691+01:00</Created>
<DeliveryInstructions>sample string 3</DeliveryInstructions>
<Id>1</Id>
<Id_Transport>1</Id_Transport>
<ReportId>sample string 2</ReportId>
</PatientStatus>
<PatientStatus>
<AcceptPatient>true</AcceptPatient>
<AcceptPatientFullName>sample string 6</AcceptPatientFullName>
<AcceptPatientRole>sample string 5</AcceptPatientRole>
<AcceptPatientWorkUnitName>sample string 7</AcceptPatientWorkUnitName>
<Created>2025-12-11T02:50:45.0038691+01:00</Created>
<DeliveryInstructions>sample string 3</DeliveryInstructions>
<Id>1</Id>
<Id_Transport>1</Id_Transport>
<ReportId>sample string 2</ReportId>
</PatientStatus>
</PatientStatuses>
</PatientGetStatusResponse>