PLI Tax Audit Insurance (Direct)
Reliable tax audit insurance. For a business entity, an individual, a trust, or a self-managed super fund. A tailored tax audit insurance policy that offers quick and comprehensive protection.
This product differs slightly from others in that the limit options are obtained from the product’s meta_data attribute. This allows for specific labels for each entity_type. Each entity_type factor has a data property, with an array of limits. Some allow for two, some for three. This is a snippet of the parameters.entity_type
[
...,
{
"identifier": "entity_type_5",
"label": "Business Group AUD 500k to AUD 1 Million",
"grouping": "entity_type",
"data": {
"limits": [
"limit_0",
"limit_1",
"limit_2"
]
}
},
{
"identifier": "entity_type_6",
"label": "Business Group AUD 1 to AUD 3 Million",
"grouping": "entity_type",
"data": {
"limits": [
"limit_0",
"limit_2"
]
}
},
...
]
The meta_data allows you to use the selected entity_type to determine which labels can be shown on the liit options.
{
...,
"meta_data": {
"limit_label": {
...,
"entity_type_5": {
"limit_0": "AUD 10,000",
"limit_1": "AUD 20,000",
"limit_2": "AUD 50,000"
},
"entity_type_6": {
"limit_0": "AUD 20,000",
"limit_2": "AUD 50,000"
},
...,
},
},
...
}
Parameter Explanations
| Parameter | Type | Description |
|---|---|---|
product | String | The product slug: “taxauditinsuranceau” |
entity_type | String | The identifier for the entity_type selected |
limit | Integer | The identifier for the limit selected |
region | String | The state the main cover holder is located in |
policy_start_date | String | Optional, see Products page for more info |
name | String | The name of the person responsible for the policy |
email | String | The email address of the person responsible for the policy |
name_of_insured | String | Optional, The name of the policy holder if different from the contact name |
Parameters required to create a quote
{
"product": "taxauditinsuranceau",
"entity_type": "entity_type_0",
"limit": "limit_0",
"region": "VIC",
"email": "mary@example.com",
"name": "Mary Smith",
"name_of_insured": null
}