Casava API Docs
  • 👋Welcome!
  • Definitions
  • Environments
  • Start Integration
  • Reference
    • API Reference
      • Policy
        • Policy Application
        • Get all policy holders
        • Get Policy Application Details
        • Get Policyholder by Policyholder Number
        • Get Policy Product
      • Quote
        • Create Policyholder with Quote
        • Get Quote By ID
      • Payment Notifications
  • Widget
    • Javascript Popup Widget
Powered by GitBook
On this page
  1. Reference
  2. API Reference
  3. Quote

Get Quote By ID

PreviousCreate Policyholder with QuoteNextPayment Notifications

Last updated 3 years ago

You can use this endpoint to get information about a single quote by searching for the quoteId of that quote.

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"
    }
]

Get a list of quotes by specified criteria

get
Authorizations
Query parameters
policyHolderNumberstringOptional

Used to filter by policy holder number reference

quoteIdstringOptional

Used to filter by a specific quote id

pageSizeinteger · int32Optional

Number of result to display

Default: 50
pageIndexinteger · int32Optional

Page index

Default: 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"
  }
]