GET api/bfg/v1/watchlists/{watchlistID}/watchlist-items
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| watchlistID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WatchItem| Name | Description | Type | Additional information |
|---|---|---|---|
| WatchlistItemID | integer |
None. |
|
| SecurityCode | string |
None. |
|
| Exchange | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"WatchlistItemID": 1,
"SecurityCode": "sample string 2",
"Exchange": "sample string 3"
},
{
"WatchlistItemID": 1,
"SecurityCode": "sample string 2",
"Exchange": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfWatchItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<WatchItem>
<WatchlistItemID>1</WatchlistItemID>
<SecurityCode>sample string 2</SecurityCode>
<Exchange>sample string 3</Exchange>
</WatchItem>
<WatchItem>
<WatchlistItemID>1</WatchlistItemID>
<SecurityCode>sample string 2</SecurityCode>
<Exchange>sample string 3</Exchange>
</WatchItem>
</ArrayOfWatchItem>