Get Quote By ID
You can use this endpoint to get information about a single quote by searching for the quoteId
of that quote.
Authorizations
Query parameters
policyHolderNumberstringOptional
Used to filter by policy holder number reference
quoteIdstringOptional
Used to filter by a specific quote id
pageSizeinteger · int32OptionalDefault:
Number of result to display
50
pageIndexinteger · int32OptionalDefault:
Page index
0
Header parameters
api_keyanyRequired
Responses
200
successful operation
application/json
404
quote not found
get
GET /api/channel-service/v1/policyHolder/quote HTTP/1.1
Host: channel.sandbox.casava.co
api_key: YOUR_API_KEY
Accept: */*
[
{
"quoteId": "123456788",
"quoteExpiryDate": "2021-10-23",
"policyCode": "1234567262",
"policyHolderNumber": "123452829",
"status": "active",
"amount": 200,
"installment": "MONTHLY"
}
]
Sample Request
https://channels.casava.co/api/v1/policyHolder/quote?quoteId=7401516450
Sample Response
[
{
"quoteId": "7401516450",
"quoteExpiryDate": "2022-02-17T10:51:03.426Z",
"amount": 200,
"status": "applied",
"policyHolderNumber": "08049292921",
"policyCode": "122220706",
"installment": "MONTHLY"
}
]
Last updated