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": "58177bbe-68ea-4ba3-a722-006bf436c36f",
"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>58177bbe-68ea-4ba3-a722-006bf436c36f</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": "2311e135-f02f-4085-bf04-175eef65b3f1",
"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": "2025-12-11T14:42:54.5141883+03:00",
"ExpiryDate": "2025-12-11T14:42:54.5141883+03:00"
},
{
"PatientInsuranceID": "2311e135-f02f-4085-bf04-175eef65b3f1",
"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": "2025-12-11T14:42:54.5141883+03:00",
"ExpiryDate": "2025-12-11T14:42:54.5141883+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>2025-12-11T14:42:54.5141883+03:00</ExpiryDate>
<GroupNumber>sample string 7</GroupNumber>
<IDNumber>sample string 8</IDNumber>
<IssueDate>2025-12-11T14:42:54.5141883+03:00</IssueDate>
<OnlineAccessCode>sample string 9</OnlineAccessCode>
<PatientInsuranceID>2311e135-f02f-4085-bf04-175eef65b3f1</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>2025-12-11T14:42:54.5141883+03:00</ExpiryDate>
<GroupNumber>sample string 7</GroupNumber>
<IDNumber>sample string 8</IDNumber>
<IssueDate>2025-12-11T14:42:54.5141883+03:00</IssueDate>
<OnlineAccessCode>sample string 9</OnlineAccessCode>
<PatientInsuranceID>2311e135-f02f-4085-bf04-175eef65b3f1</PatientInsuranceID>
<PolicyNumber>sample string 6</PolicyNumber>
</PatientInsurance>
</PatientInsurance>
</GetPatientInsuranceResponse>