GET api.ashx/v2/notificationcategory/{id}.{json|xml}
GET a notification category.
Scopes
Notifications › Read Categories notifications.categories.readonly
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Id | Guid | Notification category id | Required |
Example Requests
Widget Javascript
Fullscreen
1
2
3
4
5
6
7
8
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/notificationcategory/{id}.json',
data: {
'id': '49fec544-6df7-4a82-872b-f8be586d5e9e'
}
}).then(function(response) {
// use response
});
Example Responses
JSON
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"NotificationCategory": {
"Id": "49fec544-6df7-4a82-872b-f8be586d5e9e",
"Name": "name"
},
"Info": [
"string",
"string"
],
"Warnings": [
"string",
"string"
],
"Errors": [
"string",
"string"
]
}
XML
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-16"?>
string
string
string
string
string
string
49fec544-6df7-4a82-872b-f8be586d5e9e
name