Channel Endpoints
List all channel endpoints
List all channel endpoints for a resource based on query filters.
get/v1/channel-endpoints
Query parameters
afterstring
Cursor for pagination indicating the starting point after which to fetch results.
beforestring
Cursor for pagination indicating the ending point before which to fetch results.
limitnumber
Limit the number of items to return (max 100)
orderDirection'ASC' | 'DESC'
Direction of sorting
orderBystring
Field to order by
includeCursorboolean
Include cursor item in response
subscriberIdstring
The subscriber ID to filter results by
contextKeysstring[]
Filter by exact context keys, order insensitive (format: "type:id")
channel'in_app' | 'email' | 'sms' | 'chat' | 'push' | 'tool'
Channel type to filter results.
providerId'anypost' | 'emailjs' | 'mailgun' | 'mailjet' | 'mandrill' | 'nodemailer' | 'postmark' | 'sendgrid' | 'sendinblue' | 'ses' | 'netcore' | 'infobip-email' | 'resend' | 'plunk' | 'mailersend' | 'mailtrap' | 'clickatell' | 'outlook365' | 'novu-email' | 'sparkpost' | 'email-webhook' | 'braze' | 'novu-email-agent' | 'nexmo' | 'plivo' | 'sms77' | 'sms-central' | 'sns' | 'telnyx' | 'twilio' | 'gupshup' | 'firetext' | 'infobip-sms' | 'burst-sms' | 'bulk-sms' | 'isend-sms' | 'forty-six-elks' | 'kannel' | 'maqsam' | 'termii' | 'africas-talking' | 'novu-sms' | 'sendchamp' | 'generic-sms' | 'clicksend' | 'bandwidth' | 'messagebird' | 'simpletexting' | 'azure-sms' | 'ring-central' | 'brevo-sms' | 'eazy-sms' | 'mobishastra' | 'afro-message' | 'unifonic' | 'smsmode' | 'imedia' | 'sinch' | 'isendpro-sms' | 'cm-telecom' | 'ruach-sms' | 'fcm' | 'apns' | 'expo' | 'one-signal' | 'pushpad' | 'push-webhook' | 'pusher-beams' | 'appio' | 'novu' | 'slack' | 'discord' | 'msteams' | 'webex-messaging' | 'mattermost' | 'ryver' | 'zulip' | 'grafana-on-call' | 'getstream' | 'rocket-chat' | 'whatsapp-business' | 'line' | 'chat-webhook' | 'novu-slack' | 'telegram' | 'sendblue' | 'novu-web-chat' | 'anthropic' | 'novu-anthropic' | 'anthropic-aws' | 'pagerduty' | 'opsgenie' | 'grafana' | 'tool-webhook'
Provider ID of the job
Filter by provider identifier (e.g., sendgrid, twilio, slack, etc.).
integrationIdentifierstring
Integration identifier to filter results.
connectionIdentifierstring
Connection identifier to filter results.
Headers
idempotency-keystring
A header for idempotency purposes
Response
OK
Example response
{
"data": [
{
"providerId": "slack",
"integrationIdentifier": "slack-prod",
"connectionIdentifier": "slack-connection-abc123",
"subscriberId": "subscriber-123",
"contextKeys": [
"tenant:org-123",
"region:us-east-1"
],
"type": "slack_channel",
"endpoint": {
"channelId": "C123456789"
}
}
]
}