GET api/person/watchscreens

Get person watchscreens list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of watchscreens and associated security codes

Collection of Watchscreen
NameDescriptionTypeAdditional information
WatchscreenID

Watchscreen ID

integer

None.

WatchscreenName

Watchscreen name

string

None.

WatchItems

List of watch item containing the ASX security codes

Collection of WatchItem

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "WatchscreenID": 1,
    "WatchscreenName": "My Watchscreen",
    "WatchItems": [
      {
        "SecurityCode": "CBA"
      },
      {
        "SecurityCode": "NAM"
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfWatchscreen xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Watchscreen>
    <WatchscreenID>1</WatchscreenID>
    <WatchscreenName>My Watchscreen</WatchscreenName>
    <WatchItems>
      <WatchItem>
        <SecurityCode>CBA</SecurityCode>
      </WatchItem>
      <WatchItem>
        <SecurityCode>NAM</SecurityCode>
      </WatchItem>
    </WatchItems>
  </Watchscreen>
</ArrayOfWatchscreen>