POST api/Claim/GetRemainingVetFeesAllowance?policyId={policyId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
policyId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
VetFeesAllowanceName | Description | Type | Additional information |
---|---|---|---|
TotalVetFeesAllowance | decimal number |
None. |
|
RemainingVetFeesAllowance | decimal number |
None. |
|
LimitReached | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalVetFeesAllowance": 1.0, "RemainingVetFeesAllowance": 2.0, "LimitReached": true }
application/xml, text/xml
Sample:
<VetFeesAllowance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <LimitReached>true</LimitReached> <RemainingVetFeesAllowance>2</RemainingVetFeesAllowance> <TotalVetFeesAllowance>1</TotalVetFeesAllowance> </VetFeesAllowance>