> For the complete documentation index, see [llms.txt](https://developer.paddle.com/llms.txt).

# Page through notification settings

The list notification settings operation is now paginated, making it easier work with a large number of notification settings.

---

## What's new?

We updated the [list notification settings operation](https://developer.paddle.com/api-reference/notification-settings/list-notification-settings.md) so that it's now paginated. This means it returns a `meta.pagination` object in responses, and supports query parameters that let you work through paginated results.

## How it works

A notification setting is a webhook endpoint or email address that Paddle sends notifications about events to. It's sometimes called a notification destination.

You can [create](https://developer.paddle.com/api-reference/notification-settings/create-notification-setting.md) and [update notification settings](https://developer.paddle.com/api-reference/notification-settings/update-notification-setting.md) through the Paddle API, as well as [listing all the settings](https://developer.paddle.com/api-reference/notification-settings/list-notification-settings.md) that you've created. Only ten notification settings may be active at once, but you may create as many notification destinations as you like.

Previously, results when listing notification settings were not paginated. To improve performance for customers who have a large number of notification settings, we added pagination to the list notification settings operation. This is useful for customers who create notification and deactivate notification settings periodically using the API.

You can [work with paginated results](https://developer.paddle.com/api-reference/about/pagination.md) using the `meta.pagination` object returned in responses and the `per_page`, `order_by`, and `after` query parameters in requests.

## Next steps

This change is available in version `1` of the Paddle API.

The default number of results returned when listing notification settings is 200, which means there is no impact on existing integrations.

You can [list notification settings](https://developer.paddle.com/api-reference/customers/list-customers.md) using the API to start using the [pagination options](https://developer.paddle.com/api-reference/about/pagination.md).
## Summary of changes

| Name | Type | Change | Entity | Description |
| --- | --- | --- | --- | --- |
| `meta.pagination` | Webhook | added | List notification settings | Contains keys used for working with paginated results. |
| `per_page` | Webhook | added | List notification settings | The default number returned is 200, which differs from other endpoints. |
| `order_by` | Webhook | added | List notification settings |  |
| `after` | Webhook | added | List notification settings |  |
