action telnyx_find_notifications_profiles { label: "List all Notifications Profiles" description: "Returns a list of your notifications profiles." provider: telnyx method: GET path: "/notification_profiles" encoding: json output: { type: "object" properties: { data: { type: "array" items: { description: "A Collection of Notification Channels" properties: { created_at: { type: "string" format: "date-time" description: "ISO 8601 formatted date indicating when the resource was created." } id: { type: "string" description: "A UUID." } name: { type: "string" description: "A human readable name." } 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" } } } } } }