Hello!
I'm using World-Check-One-API. I want to obtain "WatchList Unresolved count", "WatchList Review Required count" and "Wathlist Total Match count".
It seams there are two way to Obtain them.
One way is to call `POST /case/screeningRequest` and obtain the `results` in the Response. According to the API Documet, the `results` is Array of objects. Each objects has `resultReview`. So if you want to obtain "WatchList Unresolved count", count the objects where `resultReview.reviewRequired` is `FALSE`. Similarly if you want to obtain "WatchList Review Required count", count the objects where `resultReview.reviewRequired` is `TRUE`. Then , "Wathlist Total Match count" is total count of the results. In this case, the parameter 'providerTypes' is set to 'WATCH_LIST'.
The other way is to call `GET /cases/{caseSystemId}` and obtain the aggregatedResultSummaries in the Response.
According to the API Documet, the `aggregatedResultSummaries` has `watchlistUnresolved`, `watchlistReviewRequired` and `watchlistTotalMatches` in `watchlist`. They each matches "WatchList Unresolved count", "WatchList Review Required count" and "Wathlist Total Match count".
Is this interpretation correct? If not, could you please point out where I am mistaken?
Thank you.