action telnyx_list_notification_settings { label: "List notification settings" description: "List notification settings." provider: telnyx method: GET path: "/notification_settings" encoding: json output: { type: "object" properties: { data: { type: "array" items: { properties: { associated_record_type: { type: "string" } associated_record_type_value: { type: "string" } 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_channel_id: { type: "string" description: "A UUID reference to the associated Notification Channel." } notification_event_condition_id: { type: "string" description: "A UUID reference to the associated Notification Event Condition." } notification_profile_id: { type: "string" description: "A UUID reference to the associated Notification Profile." } parameters: { type: "array" items: { type: "object" properties: { name: { type: "string" } value: { type: "string" } } } } status: { type: "string" description: "Most preferences apply immediately; however, other may needs to propagate." enum: ["enabled", "enable-received", "enable-pending", "enable-submtited", "delete-received", "delete-pending", "delete-submitted", "deleted"] } 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" } } } } } }