curl --request POST \
--url https://lens-api.tic.io/watchlists/{id}/events/acknowledge \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"eventIds": [
123
],
"note": "<string>"
}
'Acknowledges a set of events identified by EventIds, all scoped to this watchlist, with a single optional note. Returns the number of events acknowledged.
curl --request POST \
--url https://lens-api.tic.io/watchlists/{id}/events/acknowledge \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"eventIds": [
123
],
"note": "<string>"
}
'