Overview
Axle’s Ignition session is the main interface that allows your users to connect to their insurance accounts and authorize access to scoped data from their insurance policies. However, sometimes insurance information is shared to you on behalf of your user, such as when an insurance carrier or agent sends documents via mail directly to the policy lienholder. In these cases, you can “proxy” an Ignition session, effectively sharing information on behalf of your user instead of initializing Ignition for the user to complete it themself. Axle will then process and/or verify this information, depending on the use case.Configure Ignition to receive webhooks
Ensure that the request made to generate an Ignition token includes the
webhookUri where you would like to receive Ignition events.Request Sample: cURL
The Axle Team can set up Ignition templates to overwrite the default configuration that is set per client.To apply one, pass the template in the Start Ignition request body. The template scopes to that single Ignition session. Contact the Axle team to set up a template.
Send proxy request
Select a supported
operation and provide the required insurance information for the operation in the POST /ignition/{ignitionToken}/proxy request body. See Proxy Ignition API reference for more details on how to invoke the Proxy Ignition endpoint.When Proxy Ignition request is made, Axle will queue the proxy operation immediately. Completion times may vary by operation and current Axle volume, but will be under 24 hours.
Process Ignition events
Once the submitted insurance information has been processed and/or verified, an
POST request will be sent to
the webhookUri specified when generating the Ignition session. See Ignition events for more details on the payloads of each event.- ignition.completed
- ignition.attempted
- ignition.errored
Continue from Step 3 in the Quickstart guide. In
summary, you will need to exchange the short-lived
authCode specified for
an accessToken, which can then be used to retrieve Axle Account and Policy
objects.Supported operations
Currently, only certain Ignition proxy operations are supported. Please reach
out to the Axle team if you would like to request new operations.
Process insurance carrier policy document into Axle Policy
Process insurance carrier policy document into Axle Policy
Leverage Axle’s Document AI to extract information from a policy document, such as a declarations page, policy renewal, ID card, or new business binder, and transform it into an Axle Policy object.In the request body, you must provide the following:If the operation does not succeed, you may receive an
-
operation:
process-document -
input:
namefor the document (such as the unique identifier of the document in your system)sourceof the document (eitheruserorcarrier)policyTypeof the document (autoorhome)urlthat can used to access the document.
Example request body
ignition.attempted event or an ignition.errored event.ignition.attempted webhook event
ignition.errored webhook event
Lookup insurance policy using policy details
Lookup insurance policy using policy details
Leverage Axle’s carrier integrations to lookup insurance policy information.In the request body, you must provide the following:If the operation does not succeed, you may receive a
-
operation:
policy-lookup -
input:
- Exactly one of
carrierID ornaicCode. Use the Get Carriers endpoint for a list of supported carriers and their IDs. policyTypeof the policy (auto,home, orcondo)policyNumberof the policy
autopolicies:vinof the vehicleinsuredNameof the primary policyholder (either a full name string such as"John Smith"or an object withfirstNameandlastName)addressmailing address of the primary policyholder (either a string such as"123 Main Street, New York, NY 10001"or an address object withaddressLine1,addressLine2,city,state,postalCode, andcountry)
homeandcondopolicies:addressproperty address (either a string such as"123 Main Street, New York, NY 10001"or an address object withaddressLine1,addressLine2,city,state,postalCode, andcountry)insuredNameof the primary policyholder (either a full name string such as"John Smith"or an object withfirstNameandlastName)
- Exactly one of
- Auto
- Home / Condo
Example request body
Use naicCode instead of carrier
400 Bad Request response, an ignition.attempted event, or an ignition.errored event.