Link Search Menu Expand Document

Express Tax Audit

Tax Audit Cover for Accountancy Practices


Parameter Explanations

Parameter Type Description
product String The product slug: “expresstaxauditau”
business_type string The value selected for the business type, from the list provided in the product info response
turnoverRange string Required only when business_type = 'business_entity'. The value selected for the turnover range, from the list provided in the product info response
limit string The value selected for the limit, from the list provided in the product info response
recent_claims string The value selected for recent claims, from the list provided in the product info response
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
policy_start_date String Optional, see Products page for more info
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": "expresstaxauditau",
    "business_type": "business_entity",
    "turnover_range": "turnover_range_3",
    "limit": "limit_2",
    "region": "NSW",
    "recent_claims": "no",
}

All Parameters

{
    "product": "expresstaxauditau",
    "business_type": "business_entity",
    "turnover_range": "turnover_range_3",
    "limit": "limit_2",
    "region": "NSW",
    "recent_claims": "no",
    "name": "Mary Smith",
    "email": "mary@example.com",
    "entities": [
        { "name": "My Main Business" },
        { "name": "My Super Fund" }
    ]
}