Skip to main content
POST
/
policies
/
{policyId}
/
actions
Execute Policy Action
curl --request POST \
  --url https://sandbox.axle.insure/policies/{policyId}/actions \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <api-key>' \
  --data '
{
  "operation": "request-primary-lienholder"
}
'
{
  "success": true,
  "data": {
    "id": "pla_mZj6YGXhQyQnccN97aXbq"
  }
}

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.

Path Parameters

policyId
string
required

The unique ID for the policy to execute the action on.

Body

application/json
operation
enum<string>
required

The policy action operation to execute.

Available options:
request-primary-lienholder

Response

The policy action was successfully created and is being processed.

success
boolean

Indicates whether the operation was performed successfully.

Example:

true

data
object