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

# plan_does_not_support_overage_usage

> The current plan does not support overage usage configuration

|                    |                                       |
| ------------------ | ------------------------------------- |
| **HTTP status**    | `409 Conflict`                        |
| **Error code**     | `plan_does_not_support_overage_usage` |
| **Resolve action** | `upgrade_plan`                        |

## What happened

Your current plan does not support overage usage configuration.

## How to fix

Overage usage is only supported on the Growth plan. Other plans cap usage at the plan limit and do not support additional billing beyond that.

If you are on the Growth plan:

Switch to a plan that supports overage configuration, then enable overage:

<Steps>
  <Step title="Switch to a plan that supports overage">
    ```bash theme={"dark"}
    curl -X PUT https://api.particle.pro/v1/organizations/{orgId}/billing/subscription \
      -H "Authorization: Bearer YOUR_JWT_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{"plan_id": "PLAN_ID"}'
    ```
  </Step>

  <Step title="Enable overage">
    ```bash theme={"dark"}
    curl -X PATCH https://api.particle.pro/v1/organizations/{orgId} \
      -H "Authorization: Bearer YOUR_JWT_TOKEN" \
      -H "Content-Type: application/json" \
      -d '{"overage_enabled": true}'
    ```
  </Step>
</Steps>
