update #
Applies partial changes to a notification rule.
Query Syntax #
URL: http://kuzzle:7512/_/notification-rules/:index/:_id
Method: PUT
Body:
{
// rule changes
}
Javascript #
kuzzle.query({
controller: 'notifications',
action: 'update',
index: '<index>',
_id: '<notification rule id>',
body: {
// rule changes
},
});
Arguments #
index
: Tenant index_id
: Notification rule ID
Edit this page on Github(opens new window)