GET api/Alert/Subscriptions
Gets the Alert Subscriptions for the filtered user (if applicable) or otherwise the current user
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
with Alert Subscription information
GetAlertSubscriptionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| AlertSubscriptions |
Array of Alerts |
Collection of AlertSubscription |
None. |
| Messages |
Array of messages |
Collection of Message |
None. |
| ServerInformation |
Relevant information regarding the Server |
ServerInformation |
None. |
| VersionInformation |
Relevant information regarding the API's version |
VersionInformation |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"AlertSubscriptions": [
{
"ID": 1,
"Enabled": true,
"Username": "sample string 3",
"ObjectName": "sample string 4",
"ObjectID": 5,
"ObjectType": 10,
"AlertTypeThreshold": 0,
"IncludeChildObjects": true,
"ReceiveEmail": true,
"ReceiveSMS": true
},
{
"ID": 1,
"Enabled": true,
"Username": "sample string 3",
"ObjectName": "sample string 4",
"ObjectID": 5,
"ObjectType": 10,
"AlertTypeThreshold": 0,
"IncludeChildObjects": true,
"ReceiveEmail": true,
"ReceiveSMS": true
}
],
"Messages": [
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
},
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
}
],
"ServerInformation": {
"CurrentTimeUTC": "2025-11-09T21:45:01.7410959+10:00",
"BuildDateUTC": "2025-11-09T21:45:01.7410959+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
}
}