POST
NotificationPreferences.Save
Save one or more realtime notification preferences for the current user.
Permissions
- User must be logged in with a valid bearer token.
- Returned or changed records are limited by the user permissions, team access, folder access, and account settings.
Action
- Updates the requested NotificationPreferences record after validating permissions and input fields.
Push Service
No push is sent because this function only reads data or returns helper information.
Automation
No automation is run for this function.
Special Instructions
- Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
- Send parameters as POST body fields exactly as documented.
- Send date/time values in UTC Y-m-d H:i:s format when a date or datetime field is used.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
preferencespost | json | [{"event_key":"rooms.calendar.refresh","enabled":1,"delivery_socket":1}] | JSON array of preference rows to save. |
Optional Parameters
No optional body parameters are defined for this function.
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/NotificationPreferences.Save",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"preferences": "[{\"event_key\":\"rooms.calendar.refresh\",\"enabled\":1,\"delivery_socket\":1}]"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/NotificationPreferences.Save",
"url_domain": "https:\/\/{domain}\/app\/NotificationPreferences.Save"
}Endpoint
POST /app/NotificationPreferences.Save
POST https://{user}.bull36.com/app/NotificationPreferences.Save
POST https://{domain}/app/NotificationPreferences.SaveSample Output
{
"success": 1,
"saved": 1
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams({});
// Fill body fields from the Sample Request JSON above.
const res = await fetch('/app/NotificationPreferences.Save', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Invalid preferences"
}