POST api/Patient/GetPatientLog
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": "dcb95003-0c1a-4b15-8f81-23a288708bc7",
"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>dcb95003-0c1a-4b15-8f81-23a288708bc7</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientLogResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientLog | Collection of PatientLog |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientLog": [
{
"PatientLogID": "a7a3536c-0b16-40df-9b5c-647a8f69a4f0",
"ActivityTypeID": "e50851bc-712f-4f56-b86a-96ecc14fde83",
"ActivityTime": "2025-12-11T14:39:44.9483229+03:00",
"Details": "sample string 2",
"Location": "sample string 3"
},
{
"PatientLogID": "a7a3536c-0b16-40df-9b5c-647a8f69a4f0",
"ActivityTypeID": "e50851bc-712f-4f56-b86a-96ecc14fde83",
"ActivityTime": "2025-12-11T14:39:44.9483229+03:00",
"Details": "sample string 2",
"Location": "sample string 3"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientLogResponse 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>
<PatientLog>
<PatientLog>
<ActivityTime>2025-12-11T14:39:44.9483229+03:00</ActivityTime>
<ActivityTypeID>e50851bc-712f-4f56-b86a-96ecc14fde83</ActivityTypeID>
<Details>sample string 2</Details>
<Location>sample string 3</Location>
<PatientLogID>a7a3536c-0b16-40df-9b5c-647a8f69a4f0</PatientLogID>
</PatientLog>
<PatientLog>
<ActivityTime>2025-12-11T14:39:44.9483229+03:00</ActivityTime>
<ActivityTypeID>e50851bc-712f-4f56-b86a-96ecc14fde83</ActivityTypeID>
<Details>sample string 2</Details>
<Location>sample string 3</Location>
<PatientLogID>a7a3536c-0b16-40df-9b5c-647a8f69a4f0</PatientLogID>
</PatientLog>
</PatientLog>
</GetPatientLogResponse>