action discourse_set_notification_level { label: "Set notification level" provider: discourse method: POST path: "/t/{id}/notifications.json" encoding: json input: { type: "object" properties: { "Api-Key": { type: "string" } "Api-Username": { type: "string" } id: { type: "string" } notification_level: { type: "string" enum: ["0", "1", "2", "3"] } } required: ["Api-Key", "Api-Username", "id", "notification_level"] additionalProperties: false } output: { type: "object" properties: { success: { type: "string" } } } }