Skip to main content
GET
List notification channels

Notes

  • To authenticate, you’ll need a Tako API key. It’s best practice to store it as an environment variable to avoid hardcoding sensitive credentials in your code.
  • Returns your channels only, newest first. limit is 1–100 and defaults to 20; pass a response’s next_cursor back as cursor for the next page.
  • No row carries secret. A channel’s signing secret is returned once, by Create a notification channel.
  • A status of paused with status_reason: delivery_failures means Tako paused the channel itself after two consecutive failed deliveries. A paused channel with a null status_reason is one you paused.

Authorizations

X-API-Key
string
header
required

Query Parameters

cursor
string

Opaque pagination cursor from a previous response's next_cursor.

limit
integer

Max items to return (default 20, max 100).

Required range: 1 <= x <= 100

Response

The caller's channels, newest first

items
NotificationChannelResponse · object[]
required
next_cursor
string | null