action dracoon_update_node_subscriptions { label: "Subscribe or Unsubscribe a List of nodes for notifications" description: "

🚀 Since v4.25.0

\n\n### Description: \nSubscribe/Unsubscribe nodes for notifications.\n\n### Precondition:\nUser has _\"read\"_ permissions in auth parent room.\n\n### Postcondition:\nNodes are subscribed or unsubscribed.\nNotifications for these nodes will be triggered in the future.\n\n### Further Information:\nMaximum number of subscriptions is 200." provider: dracoon method: PUT path: "/v4/user/subscriptions/nodes" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } isSubscribed: { type: "boolean" description: "Creates or deletes a subscription on each item in an array of objects." } objectIds: { type: "array" description: "List of ids" items: { type: "integer" format: "int64" description: "List of ids" } } } required: ["isSubscribed", "objectIds"] additionalProperties: false } output: { type: "object" additionalProperties: true } }