Get All Watchlists
Retrieve a list of all available watchlists for the account.
GET /iserver/watchlists
Request Object:
Body Params
SC: String.
Specify the scope of the request.
Valid Values: USER_WATCHLIST
Python
Abap
Response Object
data: Object.
Contains all of the data about the watchlist.
{
scanners_only: bool.
Shows if the system is only displaying scanners.
system_lists: Array of Objects.
Returns all IB-created watchlists.
[{
is_open: bool.
Internal use only.
read_only: bool.
Returns if the watchlist can be edited or not.
name: String.
Returns the human-readable name of the watchlist.
id: String.
Returns the code identifier of the watchlist.
type: String.
Returns the watchlist type.
Always returns “watchlist”.
}],
show_scanners: bool.
Returns if scanners are shown.
bulk_delete: bool.
Displays if the watchlists should be deleted.
user_lists: Array of Objects.
Returns all of the available user-created lists.
[{
is_open: bool.
Internal use only.
read_only: bool.
Returns if the watchlist can be edited or not.
name: String.
Returns the human-readable name of the watchlist.
id: String.
Returns the code identifier of the watchlist.
type: String.
Returns the watchlist type.
Always returns “watchlist”.
}]
},
action: String.
Internal use only.
Returns “content”.
MID: String.
Returns the number of times the endpoint was requested this session.
}

