> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axle.insure/llms.txt
> Use this file to discover all available pages before exploring further.

# Policy Action Events

> Sent to your `webhookUri` at each stage of a [Policy Action](/guides/policy-actions)'s lifecycle: `policy-action.request-initiated` -> `policy-action.request-succeeded` or `policy-action.request-failed` -> (on success) `policy-action.policy-refresh-succeeded` or `policy-action.policy-refresh-failed`.



## OpenAPI

````yaml openapi.yaml webhook policyActionEvents
openapi: 3.1.0
info:
  title: Axle API
  contact: {}
  version: '0.1'
servers:
  - description: Sandbox
    url: https://sandbox.axle.insure
  - description: Production
    url: https://api.axle.insure
    variables: {}
security:
  - ApiKeyAuth: []
paths: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-client-secret
      description: >-
        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.

````