Cover Causes
GET {{claim_api_host}}/cover-causes?claim_type=adad
A list of coverage causes for a provided claim type.
Example Response:
[
    {
        "value": "Death",
        "name": "Death"
    },
    {
        "value": "Disappearance",
        "name": "Disappearance"
    },
    ...
]
Note: This is typically returned as a remoteOptionUrl to populate a select input in the Questions endpoint, but is partially populated by user selection of a claim type.
Request Params
| Key | Datatype | Required | Description | 
|---|---|---|---|
| claim_type | string | The claim type as returned by the Policy Benefits endpoint. | |
RESPONSES
status: OK
[{"name":"Death","value":"Death"},{"name":"Disappearance","value":"Disappearance"},{"name":"Exposure","value":"Exposure"},{"name":"Loss of limb","value":"Loss of limb"},{"name":"Loss of sight","value":"Loss of sight"},{"name":"Permanent total disablement","value":"Perma tot disable"}]