Link Search Menu Expand Document

Audit (Australia)

Tax Audit Cover for Small Businesses and Individuals


Parameter Explanations

Parameter Type Description
product String The product slug: “auditau”
business_type String The value selected for the business type, from the list provided in the product info response
entities_count Integer The number of legal entities to be covered
turnover_range String The value of the selected turnover range from the list provided in the product info response. Each option is only selectable for certain values of business_type. Each identifier is prefixed with the business_type for which the option is selectable. The selected value refers to the combined turnover of all entities.
limit String The value selected for the limit, from the list provided in the product info response. Each option is only selectable for a specific turnover_range. Each identifier is prefixed with the turnover_range for which the option is selectable.
region String The Australian state in which the business is based
tax_audit String yes or no, denotes whether the insured entity/ies has been subject to any tax audits in the last 2 years
extend_super String yes or no, denotes whether the insured would like to extend cover to include an audit of their personal self-managed superannuation fund?
extend_director String yes or no, denotes whether the insured would like to extend cover to include the directors personal tax returns in the event of an ATO audit. Only applicable to certain business types. To be applicable, the business_type option must include required_groupings: ["extend_director"] in the data attribute
policy_start_date String Optional, see Products page for more info
entities Array{name: String} An array of objects, each with a name key and a string for the value. Represents the name/s of the entity/ies to be covered
name String The name of the contact person at the insured entity
email String The email address for the contact person at the insured entity

Minimum Parameters to get a quote

{
    "product": "auditau",
    "business_type": "individual",
    "turnover_range": "individual_0",
    "limit": "individual_0_1",
    "entities_count": 1,
    "extend_super": "no",
    "tax_audit": "no",
    "region": "NSW"
}

All Parameters

{
  "product": "auditau",
  "business_type": "private",
  "turnover_range": "private_1",
  "limit": "private_1_2",
  "entities_count": 3,
  "tax_audit": "no",
  "extend_super": "yes",
  "extend_director": "yes",
  "region": "NSW",
  "entities": [
      { "name": "A Pty Ltd" },
      { "name": "B Pty Ltd" },
      { "name": "C Pty Ltd" }
  ],
  "email": "a@example.com",
  "name": "A Smith"
}