/notification-channels (GET)
GET
/notification-channels
const url = 'https://example.com/api/v1/notification-channels';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/notification-channelsResponses
Section titled “ Responses ”Default Response
Media type application/json
Array<object>
object
id
required
string
kind
required
string
name
required
string
enabled
required
boolean
events
required
Array<string>
createdAt
required
string format: date-time
Example generated
[ { "id": "example", "kind": "example", "name": "example", "enabled": true, "events": [ "example" ], "createdAt": "2026-04-15T12:00:00Z" }]