BriteClaims enables organizations to manage the full lifecycle of property and casualty (P&C) insurance claims from the first notice of loss (FNOL) to settlement.
Filing claims in BriteCore begins with the FNOL. The primary focus of creating FNOL records is to collect comprehensive information about a loss occurrence for use when investigating and validating resulting claims in addition to attaching a policy to the claim. In the tutorial Create and submit a first notice of loss using BriteClaims, we walk you through the details of creating and submitting an FNOL as well as changing the status of the claim to New.
This tutorial will guide you through retrieving an existing FNOL using BriteClaims APIs. This could be needed if a user starts an FNOL, but doesn’t submit it. In the process, we will cover the following steps:
- Retrieve draft FNOLs
- Retrieve a draft FNOL by id
Retrieve an existing FNOL using BriteClaims
Step 1: Get a security token
You will need to request an ID
and Secret
to use OAuth 2.0.
For more information, refer to How do I get started?
Step 2: Retrieve draft FNOLs
You may use the endpoint claims_drafts to obtain a list of FNOL drafts that have been created but not submitted yet.
Sample request
curl --location --request GET ' /api/claims/drafts/?page=1&page_size=10' \ --header 'Authorization: ' |
Sample response
{
|
Step 3: Retrieve a draft FNOL by id
To complete and submit a draft FNOL, pass the FNOL id from Step 2 into the claims_list endpoint to retrieve the draft FNOL.
Sample request
curl --location --request GET 'https:///api/claims/0fab11a0-19e4-451a-a972-170a0240a686/' \
|
Sample response
{
|
You have successfully retrieved an existing FNOL.