action files_get_bundle_notifications_id { label: "Show Bundle Notification" description: "Show Bundle Notification" provider: files method: GET path: "/bundle_notifications/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { 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." } } } }