action dracoon_request_list_of_notification_configs { label: "Request list of notification configurations" description: "

🚀 Since v4.20.0

\n\n### Description: \nRetrieve a list of notification configurations for current user. \n\n### Precondition:\nAuthenticated user.\n\n### Postcondition:\nList of available notification configurations is returned.\n\n### Further Information:\nNone." provider: dracoon method: GET path: "/v4/user/notifications/config" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } } additionalProperties: false } output: { type: "object" description: "List of notification configurations" required: ["items"] properties: { items: { type: "array" description: "List of notification configurations" items: { type: "object" description: "Notification configuration information" required: ["channelIds", "eventTypeName", "id", "scopeId"] properties: { channelIds: { type: "array" description: "List of notification channel IDs" items: { type: "integer" format: "int32" description: "List of notification channel IDs" } } eventTypeName: { type: "string" description: "Event type name" } id: { type: "integer" format: "int64" description: "Notification configuration ID" } scopeId: { type: "integer" format: "int32" description: "Scope ID" } } } } } } }