POST api/mobile/upr/ArchiveNotifications

Find all active bulletins for the active person Also find all the people involved, their status, comments and basic information

Request Information

URI Parameters

None.

Body Parameters

NotificationArchiveRequest
NameDescriptionTypeAdditional information
NotificationArchiveGreatestID

The highest id of all notifications viewed

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "NotificationArchiveGreatestID": 1
}

application/javascript

Sample:
{"NotificationArchiveGreatestID":1}

application/xml, text/xml

Sample:
<NotificationArchiveRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <NotificationArchiveGreatestID>1</NotificationArchiveGreatestID>
</NotificationArchiveRequest>

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 'NotificationArchiveRequest'.

Response Information

Resource Description

A compound object for each bulletin item plus a people dictionary

WebMethodResultOfBoolean
NameDescriptionTypeAdditional information
Result

boolean

None.

Success

boolean

None.

ErrorText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": true,
  "Success": true,
  "ErrorText": "sample string 3"
}

application/javascript

Sample:
{"Result":true,"Success":true,"ErrorText":"sample string 3"}

application/xml, text/xml

Sample:
<WebMethodResultOfBoolean xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success>true</Success>
  <ErrorText>sample string 3</ErrorText>
  <Result>true</Result>
</WebMethodResultOfBoolean>