Faciliate and manage insurance policies
Policy Issuance API
otherwise known as Policy Purchase API
is, the critical component that finalizes the purchase of an insurance policy and effectively, its issuance for that customer.
Interally there are couple of data captured each tailored according to the requirements of our providers across different categories.
Request Fields
Field | Type | Required | Description |
---|---|---|---|
intent_id | String | Yes | Purchase intent identifier |
merchant_code | String | Yes | Merchant or Partner Seller’s short code |
additional_information | JSON | Yes | Product-specific information required for the insurance type to facilitate this purchase. |
activation_metadata | JSON | Yes | Information metadata regarding the policy activation conditions. |
Field | Type | Required | Description |
---|---|---|---|
policy_id | UUID | No | Unique identifier of the insurance policy. Provided by us. |
policy_number | String | No | Insurance policy number as provided by the provider. |
cancellation_reason | String | Yes | Customer-provided information on why they preffered to have the policy terminated. |
alternative_offerings | JSON | No | Optional alternative policies or offers suggested by the merchant before cancellation. |
merchant_feedback | String | No | Optional feedback from the merchant regarding the cancellation request. |
Policy Renewal API
only allows for renewal request after an active policy has been issued.
Request Fields
Field | Type | Required | Description |
---|---|---|---|
policy_id | UUID | No | Unique identifier of the insurance policy. Provided by us. |
policy_number | String | No | Insurance policy number as provided by the provider. |
preffered_policy_start_date | Date | Yes | Desired start date for the renewed policy (Format: YYYY-MM-DD ). |
policy_duration | Integer | Yes | Duration of the renewed policy in days (Min.: 1, Max.: 365). |
include_additional_coverage | Boolean | No | Whether additional coverage should be included. |
modify_existing_coverage | Boolean | No | Whether to modify existing coverage. Cannot be selected along with include_additional_coverage . |
coverage_details | JSON | No | Required if modifying or including additional coverage |
auto_renew | Boolean | No | Required if the policy should auto-renew in the future |