For AI agents and LLMs: a structured documentation index is available at /llms.txt. Every page has a Markdown sibling — append .md to any URL.

Skip to content
Docs

Page through notification settings

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

Tooling

  • API
  • Webhooks

Released

April 15, 2024

Status

Released

API version

Version 1

What's new?

We updated the list notification settings operation 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 and update notification settings through the Paddle API, as well as listing all the settings 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 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 using the API to start using the pagination options.

Summary of changes

List notification settings

Operation
  • + Added Webhook meta.pagination

    Contains keys used for working with paginated results.

  • + Added Webhook per_page

    The default number returned is 200, which differs from other endpoints.

  • + Added Webhook order_by
  • + Added Webhook after

Was this page helpful?