GET api/GetUserNotifications
Retrieves a list of active users eligible for notifications based on the specified source and debug settings.
Request Information
URI Parameters
None.
Body Parameters
An object containing the source of the notification and debug settings.
UserNotificationInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| source | string |
None. |
|
| debugUserID | integer |
None. |
|
| debugMode | boolean |
None. |
Request Formats
application/json, text/json, application/scim+json
Sample:
{
"source": "sample string 1",
"debugUserID": 2,
"debugMode": true
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
On success: HTTP 200 OK with a list of user records wrapped in a `DataRowResponse`. On failure: HTTP 400 Bad Request with a generic error message.
DataRowResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| dataInfo | DataSet |
None. |
Response Formats
application/json, text/json
Sample:
{}
application/scim+json
Sample:
{
"dataInfo": null
}