Notification

A Notification object represents a notification type and a list of channels that define how the notification is sent.

It is an object with the following properties:

Name

Type

Description

notificationType

string

A string that points to an item from Option List NotificationTypes.

isUserOwned

bool

A boolean that defines if the notification is global or assigned to a specific user.

user

Link

A link to the User Object for which the notification applies (if user-owned).

channels

Array

An array containing per channel a channelname and an is_checked boolean.

Example

RequestResponse
{
  "id": 16,
  "notificationtype": "SearchChanged",
  "notificationtypelabel": "Saved search results changed",
  "is_user_owned": false,
  "created_on": "2017-04-11T01:11:12.149588Z",
  "created_by": {
    "href": "https://stylelabs_example.com/api/entities/6",
    "title": "The user who created the entity"
  },
  "modified_on": "2017-04-11T01:11:12.149588Z",
  "modified_by": {
    "href": "https://stylelabs_example.com/api/entities/6",
    "title": "The user who last modified the entity"
  },
  "channels": [
    {
      "channelname": "EmailNotification",
      "is_checked": true
    },
    {
      "channelname": "RealTimeNotification",
      "is_checked": false
    }
  ],
  "UserId": 0,
  "self": {
  "href": "https://stylelabs_example.com/api/notifications",
  "title": "This Notification."
  }
}

Do you have some feedback for us?

If you have suggestions for improving this article,