action telnyx_list_notification_channels { label: "List notification channels" description: "List notification channels." provider: telnyx method: GET path: "/notification_channels" encoding: json output: { type: "object" properties: { data: { type: "array" items: { description: "A Notification Channel" properties: { channel_destination: { type: "string" description: "The destination associated with the channel type." } channel_type_id: { type: "string" description: "A Channel Type ID" enum: ["sms", "voice", "email", "webhook"] } created_at: { type: "string" format: "date-time" description: "ISO 8601 formatted date indicating when the resource was created." } id: { type: "string" description: "A UUID." } notification_profile_id: { type: "string" description: "A UUID reference to the associated Notification Profile." } updated_at: { type: "string" format: "date-time" description: "ISO 8601 formatted date indicating when the resource was updated." } } } } meta: { type: "object" properties: { page_number: { type: "integer" } page_size: { type: "integer" } total_pages: { type: "integer" } total_results: { type: "integer" } } } } } }