Watchlists¶
List Watchlists¶
GET /data/watchlists
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | WatchlistCollection |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.
Get Watchlist¶
GET /data/watchlists/{watchlist_id}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
watchlist_id |
path | string | yes | Letters, digits, dash and underscore; up to 64. |
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | Watchlist |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.
Put Watchlist¶
PUT /data/watchlists/{watchlist_id}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
watchlist_id |
path | string | yes | Letters, digits, dash and underscore; up to 64. |
Request body: WatchlistUpsert
Responses
| Status | Meaning | Body |
|---|---|---|
| 200 | Successful Response | Watchlist |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.
Delete Watchlist¶
DELETE /data/watchlists/{watchlist_id}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
watchlist_id |
path | string | yes | Letters, digits, dash and underscore; up to 64. |
Responses
| Status | Meaning | Body |
|---|---|---|
| 204 | Successful Response |
Also the shared errors: 400, 401, 404, 405, 422, 500, 501, 503.