POST api/Patient/GetPatientInsurance
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": "206c88e7-5a74-4cf2-a8cf-f2aade63a522",
"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>206c88e7-5a74-4cf2-a8cf-f2aade63a522</PatientID> <WebApiVersion>4</WebApiVersion> <PageCount>2</PageCount> <PageNumber>1</PageNumber> </PageRequestBase>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetPatientInsuranceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientInsurance | Collection of PatientInsurance |
None. |
|
| PageNumber | integer |
None. |
|
| PageCount | integer |
None. |
|
| TotalCount | integer |
None. |
|
| WebApiVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientInsurance": [
{
"PatientInsuranceID": "f306fd2a-5a98-4b69-ac9d-1c7fc9855282",
"CompanyName": "sample string 2",
"CompanyContact": "sample string 3",
"ContactNumber": "sample string 4",
"Employer": "sample string 5",
"PolicyNumber": "sample string 6",
"GroupNumber": "sample string 7",
"IDNumber": "sample string 8",
"OnlineAccessCode": "sample string 9",
"IssueDate": "2026-02-28T15:33:47.4422088+03:00",
"ExpiryDate": "2026-02-28T15:33:47.4422088+03:00"
},
{
"PatientInsuranceID": "f306fd2a-5a98-4b69-ac9d-1c7fc9855282",
"CompanyName": "sample string 2",
"CompanyContact": "sample string 3",
"ContactNumber": "sample string 4",
"Employer": "sample string 5",
"PolicyNumber": "sample string 6",
"GroupNumber": "sample string 7",
"IDNumber": "sample string 8",
"OnlineAccessCode": "sample string 9",
"IssueDate": "2026-02-28T15:33:47.4422088+03:00",
"ExpiryDate": "2026-02-28T15:33:47.4422088+03:00"
}
],
"PageNumber": 1,
"PageCount": 2,
"TotalCount": 3,
"WebApiVersion": 4
}
application/xml, text/xml
Sample:
<GetPatientInsuranceResponse 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>
<PatientInsurance>
<PatientInsurance>
<CompanyContact>sample string 3</CompanyContact>
<CompanyName>sample string 2</CompanyName>
<ContactNumber>sample string 4</ContactNumber>
<Employer>sample string 5</Employer>
<ExpiryDate>2026-02-28T15:33:47.4422088+03:00</ExpiryDate>
<GroupNumber>sample string 7</GroupNumber>
<IDNumber>sample string 8</IDNumber>
<IssueDate>2026-02-28T15:33:47.4422088+03:00</IssueDate>
<OnlineAccessCode>sample string 9</OnlineAccessCode>
<PatientInsuranceID>f306fd2a-5a98-4b69-ac9d-1c7fc9855282</PatientInsuranceID>
<PolicyNumber>sample string 6</PolicyNumber>
</PatientInsurance>
<PatientInsurance>
<CompanyContact>sample string 3</CompanyContact>
<CompanyName>sample string 2</CompanyName>
<ContactNumber>sample string 4</ContactNumber>
<Employer>sample string 5</Employer>
<ExpiryDate>2026-02-28T15:33:47.4422088+03:00</ExpiryDate>
<GroupNumber>sample string 7</GroupNumber>
<IDNumber>sample string 8</IDNumber>
<IssueDate>2026-02-28T15:33:47.4422088+03:00</IssueDate>
<OnlineAccessCode>sample string 9</OnlineAccessCode>
<PatientInsuranceID>f306fd2a-5a98-4b69-ac9d-1c7fc9855282</PatientInsuranceID>
<PolicyNumber>sample string 6</PolicyNumber>
</PatientInsurance>
</PatientInsurance>
</GetPatientInsuranceResponse>