GET RequestObservers/LookupObserverEvents

Retrieves all events that an observer can be registered to recieve notifications for

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ObserverEventDTO
NameDescriptionTypeAdditional information
ID

The Event ID

globally unique identifier

None.

Name

The name of the event

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ID": "2e144c3e-b396-4307-84f7-d983d7988a57",
      "Name": "sample string 2"
    },
    {
      "ID": "2e144c3e-b396-4307-84f7-d983d7988a57",
      "Name": "sample string 2"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ID":"2e144c3e-b396-4307-84f7-d983d7988a57","Name":"sample string 2"},{"ID":"2e144c3e-b396-4307-84f7-d983d7988a57","Name":"sample string 2"}]}

application/bson

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

application/xml, text/xml

Sample:
<ArrayOfObserverEventDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ObserverEventDTO>
    <ID>2e144c3e-b396-4307-84f7-d983d7988a57</ID>
    <Name>sample string 2</Name>
  </ObserverEventDTO>
  <ObserverEventDTO>
    <ID>2e144c3e-b396-4307-84f7-d983d7988a57</ID>
    <Name>sample string 2</Name>
  </ObserverEventDTO>
</ArrayOfObserverEventDTO>