Proposal
The table below lists the events associated with the proposal entity.
Status Values
| Values | Description |
|---|---|
| health.proposal.initiated | Proposal has been submitted to the OneAssure internal system |
| health.proposal.pending | Proposal has passed the initial checks and is waiting for being submitted to the insurer |
| health.proposal.submitted | Proposal has been submitted to the insurer |
| health.proposal.underwriting | Proposal is under underwriting review with the insurer |
| health.proposal.cancelled | Proposal has been cancelled by the OneAssure internal system due to failing pre-underwriting checks |
| health.proposal.accepted | Proposal has been accepted by the insurer |
| health.proposal.rejected | Proposal has been rejected by the insurer |
| health.proposal.offline | Proposal will be processed offline |
Sample Payloads
health.proposal.initiated
{
"session_id": "18rRLLwvdI5tjPZM",
"proposal_id": "19uZNZEXFRXqzH7D",
"name": "John Doe",
"phone": "973456786",
"email": "abc@gmail.com",
"insurer_name": "ICICI Lombard",
"insurer_id": "18kfaYY6UvClEx35",
"product_name": "Elevate",
"product_id": "18kfaYY6UvClEx35",
"variant_name": "Elevate",
"variant_id": "18kfaYY6UvClEx35",
"tenure": 1,
"net_premium": "7282.20",
"gross_premium": "8593.00",
"status": "INITIATED",
"form_responses": {}, // TODO
"quote_id": "18kfaYY6UvClEx35"
}
health.proposal.pending
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "PENDING"
}
health.proposal.submitted
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "SUBMITTED"
}
health.proposal.underwriting
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "UNDERWRITING"
}
health.proposal.cancelled
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "CANCELLED",
"cancelled_reason": "Customer BMI is too high"
}
health.proposal.accepted
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "ACCEPTED"
}
health.proposal.rejected
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "REJECTED",
"rejection_reason": "Customer's daily drinking habit is too high"
}
health.proposal.offline
{
"proposal_id": "19uZNZEXFRXqzH7D",
"status": "OFFLINE"
}