POST
/
ignition
/
{ignitionToken}
/
proxy
Proxy Ignition
curl --request POST \
  --url https://sandbox.axle.insure/ignition/{ignitionToken}/proxy \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "operation": "process-document",
  "input": {}
}'
{
  "success": true
}

Authorizations

x-client-secret
string
header
required

Your secret API key. This will be shared with you during onboarding and should be considered sensitive - it’s a password after all! Your secret will be matched with your client ID to authenticate your requests.

Headers

x-client-id
string
required

Your client ID. This will be shared with you during onboarding.

x-destination-client-id
string

The client ID of the destination client. This is optional and only used by platform clients. See the Axle for Platforms guide for more information.

Path Parameters

ignitionToken
string
required

The unique ID for the Ignition session.

Body

application/json
operation
enum<string>

The proxy operation to be completed.

Available options:
process-document
input
object

The input provided will be unique to the proxy type specified.

Response

The insurance information was received and Axle has successfully begun processing the information.

success
boolean

Indicates whether the operation was performed successfully.

Example:

true