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

# subscriber.paused

> The subscription has been paused by the merchant. Billing is suspended and no new invoices will be created until resumed.

## When it fires

When a merchant pauses an `active` subscriber from the dashboard. The subscriber's status transitions to `paused`. No new invoices are created while paused.

Pausing is reversible — the subscription can be resumed at any time with [`subscriber.resumed`](/webhook-events/subscriber-resumed).

***

## What to do

* Suspend the customer's access or downgrade to a free tier
* Update your internal subscription record
* Optionally notify the customer that their subscription is paused

<Info>
  Pausing does not cancel the subscription. The subscriber retains their record and history. Access should be suspended but can be restored when the merchant resumes.
</Info>

***

## Payload

```json theme={null}
{
  "event": "subscriber.paused",
  "subscriberId": "9f1e2d3c-4b5a-6789-abcd-ef0123456789",
  "merchantId": "f9e8d7c6-b5a4-3210-9876-543210fedcba",
  "planId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "email": "customer@example.com",
  "status": "paused",
  "currentPeriodEnd": "2026-05-19T00:00:00.000Z",
  "timestamp": "2026-04-25T09:00:00.000Z"
}
```

| Field              | Type   | Description                                      |
| ------------------ | ------ | ------------------------------------------------ |
| `event`            | string | Always `subscriber.paused`                       |
| `subscriberId`     | string | UUID of the subscriber record                    |
| `merchantId`       | string | Your merchant account UUID                       |
| `planId`           | string | UUID of the plan                                 |
| `email`            | string | Subscriber email address                         |
| `status`           | string | Always `paused`                                  |
| `currentPeriodEnd` | string | ISO 8601 — end of the last active billing period |
| `timestamp`        | string | ISO 8601 — when the event was generated          |

***

## Handler example

```javascript Node.js theme={null}
app.post('/webhooks/settlx', express.raw({ type: 'application/json' }), async (req, res) => {
  verifySignature(req); // see Webhook Integration for verification code

  const event = JSON.parse(req.body);

  if (event.event === 'subscriber.paused') {
    const { subscriberId, email } = event;

    await db.subscriptions.update(subscriberId, { status: 'paused' });

    // Suspend access
    await suspendAccess(email);

    // Optionally notify the subscriber
    await sendEmail(email, 'subscription-paused');
  }

  res.status(200).json({ received: true });
});
```

***

## Related events

* [`subscriber.resumed`](/webhook-events/subscriber-resumed) — Subscription reactivated; restore access.
* [`subscriber.cancelled`](/webhook-events/subscriber-cancelled) — Permanent cancellation.
