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
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UserNotificationInfo'.

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
NameDescriptionTypeAdditional information
dataInfo

DataSet

None.

Response Formats

application/json, text/json

Sample:
{}

application/scim+json

Sample:
{
  "dataInfo": null
}