GET api/PersonalInfo/GetCoverageCertificate?policyId={policyId}&entityId={entityId}&profitRegion={profitRegion}
Method to get the coverage certificate
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| policyId |
policy id |
integer |
Required |
| entityId |
entity id |
integer |
Required |
| profitRegion | string |
Required |
Body Parameters
None.
Response Information
Resource Description
file info
XFileResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Oid | globally unique identifier |
None. |
|
| Id | integer |
None. |
|
| FileName | string |
None. |
|
| FullPath | string |
None. |
|
| Stream | Stream |
None. |
|
| FileData | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Oid": "7a1e7124-4c15-4239-98c5-f451686f9313",
"Id": 2,
"FileName": "sample string 3",
"FullPath": "sample string 4",
"Stream": null,
"FileData": "sample string 5",
"Message": "sample string 6"
}
application/xml, text/xml
Sample:
<XFileResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.MemberPortal.API.Models"> <FileData>sample string 5</FileData> <FileName>sample string 3</FileName> <FullPath>sample string 4</FullPath> <Id>2</Id> <Message>sample string 6</Message> <Oid>7a1e7124-4c15-4239-98c5-f451686f9313</Oid> </XFileResponseModel>