action telnyx_find_notifications_events { label: "List all Notifications Events" description: "Returns a list of your notifications events." provider: telnyx method: GET path: "/notification_events" encoding: json output: { type: "object" properties: { data: { type: "array" items: { description: "An object representing the available notifications." properties: { created_at: { type: "string" format: "date-time" description: "ISO 8601 formatted date indicating when the resource was created." } enabled: { type: "boolean" } id: { type: "string" description: "A UUID." } name: { type: "string" description: "A human readable name." } notification_category: { type: "string" } 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" } } } } } }