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

# Limit Reached

> Fired when a customer reaches the limit for a feature (included allowance, max purchase, or spend limit).

### Payload Fields

<ParamField body="customer_id" type="string" required>
  The ID of the customer who hit the limit.
</ParamField>

<ParamField body="entity_id" type="string">
  The entity ID, if the limit was reached on a specific entity.
</ParamField>

<ParamField body="feature_id" type="string" required>
  The feature ID whose limit was reached.
</ParamField>

<ParamField body="limit_type" type="'included' | 'max_purchase' | 'spend_limit'" required>
  Which limit was hit: included allowance, max purchase cap, or spend limit.
</ParamField>


## OpenAPI

````yaml api/openapi.yml webhook balances.limit_reached
openapi: 3.1.0
info:
  title: Autumn API
  version: 2.3.0
servers:
  - url: https://api.useautumn.com
    description: Production server
security:
  - secretKey: []
paths: {}
components:
  securitySchemes:
    secretKey:
      type: http
      scheme: bearer
      bearerFormat: JWT

````