Skip to main content

Proposal

The table below lists the events associated with the proposal entity.

Status Values

ValuesDescription
health.proposal.initiatedProposal has been submitted to the OneAssure internal system
health.proposal.pendingProposal has passed the initial checks and is waiting for being submitted to the insurer
health.proposal.submittedProposal has been submitted to the insurer
health.proposal.underwritingProposal is under underwriting review with the insurer
health.proposal.cancelledProposal has been cancelled by the OneAssure internal system due to failing pre-underwriting checks
health.proposal.acceptedProposal has been accepted by the insurer
health.proposal.rejectedProposal has been rejected by the insurer
health.proposal.offlineProposal 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"
}