action files_get_bundle_notifications { label: "List Bundle Notifications" description: "List Bundle Notifications" provider: files method: GET path: "/bundle_notifications" encoding: json input: { type: "object" properties: { bundle_id: { type: "integer" format: "int32" } cursor: { type: "string" } per_page: { type: "integer" format: "int32" } user_id: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Bundle Notifications" properties: { bundle_id: { type: "integer" format: "int32" description: "Bundle ID to notify on" } id: { type: "integer" format: "int32" description: "Bundle Notification ID" } notify_on_registration: { type: "boolean" description: "Triggers bundle notification when a registration action occurs for it." } notify_on_upload: { type: "boolean" description: "Triggers bundle notification when a upload action occurs for it." } user_id: { type: "integer" format: "int32" description: "The id of the user to notify." } } } } }