POST api/Patient/GetPatientProcedure
Request Information
URI Parameters
None.
Body Parameters
PageRequestBase| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| PatientID | globally unique identifier |
None. |
|
| WebApiVersion | integer |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"PageCount": 2,
"PatientID": "6009249f-b454-4e1d-9ed0-e7e1bf7fa698",
"WebApiVersion": 4,
"Language": "sample string 5"
}
application/xml, text/xml
Sample:
<PageRequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO"> <Language>sample string 5</Language> <PatientID>6009249f-b454-4e1d-9ed0-e7e1bf7fa698</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientProcedureResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientProcedure | Collection of PatientProcedure |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientProcedure": [
{
"PatientProcedureID": "670ff929-c3db-4b2e-813c-934e9b400eec",
"Name": "sample string 2",
"Institution": "sample string 3",
"ProcedureDate": "2026-02-28T15:35:27.969598+03:00",
"PerformedBy": "sample string 4",
"Notes": "sample string 5"
},
{
"PatientProcedureID": "670ff929-c3db-4b2e-813c-934e9b400eec",
"Name": "sample string 2",
"Institution": "sample string 3",
"ProcedureDate": "2026-02-28T15:35:27.969598+03:00",
"PerformedBy": "sample string 4",
"Notes": "sample string 5"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientProcedureResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
<WebApiVersion>4</WebApiVersion>
<PageCount>2</PageCount>
<PageNumber>1</PageNumber>
<TotalCount>3</TotalCount>
<PatientProcedure>
<PatientProcedure>
<Institution>sample string 3</Institution>
<Name>sample string 2</Name>
<Notes>sample string 5</Notes>
<PatientProcedureID>670ff929-c3db-4b2e-813c-934e9b400eec</PatientProcedureID>
<PerformedBy>sample string 4</PerformedBy>
<ProcedureDate>2026-02-28T15:35:27.969598+03:00</ProcedureDate>
</PatientProcedure>
<PatientProcedure>
<Institution>sample string 3</Institution>
<Name>sample string 2</Name>
<Notes>sample string 5</Notes>
<PatientProcedureID>670ff929-c3db-4b2e-813c-934e9b400eec</PatientProcedureID>
<PerformedBy>sample string 4</PerformedBy>
<ProcedureDate>2026-02-28T15:35:27.969598+03:00</ProcedureDate>
</PatientProcedure>
</PatientProcedure>
</GetPatientProcedureResponse>