curl --request GET \
--url https://api.tic.io/watchlists \
--header 'x-api-key: <api-key>'
{
"pageSize": 123,
"lastItemId": 123,
"totalItems": 123,
"items": [
{
"teamWatchListId": 123,
"watchListName": "<string>",
"watchListDescription": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
]
}
Lists all the watchlists for the team
curl --request GET \
--url https://api.tic.io/watchlists \
--header 'x-api-key: <api-key>'
{
"pageSize": 123,
"lastItemId": 123,
"totalItems": 123,
"items": [
{
"teamWatchListId": 123,
"watchListName": "<string>",
"watchListDescription": "<string>",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
]
}
Watch list or team name, use % for wildcard
Take records after the id
Page size
OK
The response is of type object
.