GET Users/GetAssignedNotifications?userID={userID}

Returns all assigned notifications for user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AssignedUserNotificationDTO
NameDescriptionTypeAdditional information
Event

The name of the event/notification

string

None.

EventID

The event ID

globally unique identifier

None.

Level

The level at which this notification is set.

string

None.

Description

Th project, organization, datamart, or datamart within project details.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Event": "sample string 1",
      "EventID": "b1936e06-541f-43a9-979c-8d69ddb2cc2f",
      "Level": "sample string 3",
      "Description": "sample string 4"
    },
    {
      "Event": "sample string 1",
      "EventID": "b1936e06-541f-43a9-979c-8d69ddb2cc2f",
      "Level": "sample string 3",
      "Description": "sample string 4"
    }
  ]
}

text/javascript

Sample:
{"results":[{"Event":"sample string 1","EventID":"b1936e06-541f-43a9-979c-8d69ddb2cc2f","Level":"sample string 3","Description":"sample string 4"},{"Event":"sample string 1","EventID":"b1936e06-541f-43a9-979c-8d69ddb2cc2f","Level":"sample string 3","Description":"sample string 4"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfAssignedUserNotificationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <AssignedUserNotificationDTO>
    <Description>sample string 4</Description>
    <Event>sample string 1</Event>
    <EventID>b1936e06-541f-43a9-979c-8d69ddb2cc2f</EventID>
    <Level>sample string 3</Level>
  </AssignedUserNotificationDTO>
  <AssignedUserNotificationDTO>
    <Description>sample string 4</Description>
    <Event>sample string 1</Event>
    <EventID>b1936e06-541f-43a9-979c-8d69ddb2cc2f</EventID>
    <Level>sample string 3</Level>
  </AssignedUserNotificationDTO>
</ArrayOfAssignedUserNotificationDTO>