action telnyx_find_notifications_events_conditions { label: "List all Notifications Events Conditions" description: "Returns a list of your notifications events conditions." provider: telnyx method: GET path: "/notification_event_conditions" encoding: json output: { type: "object" properties: { data: { type: "array" items: { properties: { allow_multiple_channels: { type: "boolean" description: "Dictates whether a notification channel id needs to be provided when creating a notficiation setting." } associated_record_type: { type: "string" enum: ["account", "phone_number"] } asynchronous: { type: "boolean" description: "Dictates whether a notification setting will take effect immediately." } created_at: { type: "string" format: "date-time" description: "ISO 8601 formatted date indicating when the resource was created." } description: { type: "string" } enabled: { type: "boolean" } id: { type: "string" description: "A UUID." } name: { type: "string" } notification_event_id: { type: "string" } parameters: { type: "array" items: { type: "object" properties: { data_type: { type: "string" } name: { type: "string" } optional: { type: "boolean" } } } } supported_channels: { type: "array" description: "Dictates the supported notification channel types that can be emitted." items: { 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" } } } } } }