List notification channels
Notifications
List notification channels
List every notification channel registered to the authenticated user. Supports filtering by channel_type and enabled status, and ordering by label or created (prefix with - for descending).
GET
List notification channels
Authorizations
Query Parameters
Restrict to channels of a single type (email, sms, in_app).
Available options:
email, sms, in_app If set, restrict to enabled (true) or paused (false) channels.
Sort order. One of label, created, -label, -created.
Page number (1-indexed).
Required range:
x >= 1Number of items per page (max 100).
Required range:
1 <= x <= 100Response
200 - application/json
OK
Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.
Pagination envelope describing position within the full result set.
Example:
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}