For a deeper look into our World Check One API, look into:

Overview |  Quickstart |  Documentation |  Downloads

question

Upvotes
Accepted
1 3 4 5

Use of Status field during and after case resolution

Consider the below scenario and please respond to query mentioned at the end.

  • Screening call is made for “WT MARINE PTE LTD”
  • A match is found on WC1 side
  • Admin goes in and resolve that case with status selected as “Positive – Declined”
  • Now a rescreening call is made for same case
  • Below response is received for rescreening call

“[{"resultId":"0a3687cf-673a-1553-99e1-3690005e01ef","referenceId":"e_tr_wco_4540054","matchStrength":"EXACT","matchedTerm":"WT Marine Pte Ltd","submittedTerm":"WT Marine Pte. Ltd","matchedNameType":"AKA","secondaryFieldResults":[],"sources":["b_trwc_DPRK-WC","b_trwc_393","b_trwc_386"],"categories":["Other Bodies","Sanctions","Sanctions"],"creationDate":"2018-12-06T18:49:15.333Z","modificationDate":"2018-12-11T18:36:52.294Z","resolution":{"statusId":"0a3687cf-65b4-1aaa-99b1-9b030000282e","riskId":"0a3687cf-65b4-1aaa-99b1-9b030000282d","reasonId":"0a3687cf-65b4-1aaa-99b1-9b0300002825","resolutionRemark":null,"resolutionDate":"2018-12-11T18:36:52.294Z"},"resultReview":{"reviewRequired":false,"reviewRequiredDate":"2018-11-08T00:00:00.000Z","reviewRemark":null,"reviewDate":null}}]”

How do we interpret this response? Since user is declining it on WC1 site, should this rescreening call be resulting in flag or not?

Also it will be helpful if you can provide the meaning for statuses like “Positive”, “False”, possible”, “Unspecified” and how should we interpret the response for the calls made for cases resolved with these statuses.

world-checkworld-check-onescreening
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@surinder.kumar, thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text beneath the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question. Thanks, AHS

1 Answer

· Write an Answer
Upvotes
Accepted
4.2k 8 5 6

@surinder.kumar

After the compliance team has resolved the case as Positive-Declined in the WC1 UI, in the back end, the "resolutionStatus" attribute of the result set gets changed to:

"resolution":{"statusId":"0a3687cf-65b4-1aaa-99b1-9b030000282e","riskId":"0a3687cf-65b4-1aaa-99b1-9b030000282d","reasonId":"0a3687cf-65b4-1aaa-99b1-9b0300002825"

Kindly note if the case has not been resolved, the value that the resolutionStatus will bear is "null".

So in order to identify if the compliance team has declined/approved a client, you need to find out if the "resolutionStatus" has a value different than "null". You can use the API call "

SEQ-case-investigate-results: Get screening results" to fetch the result set and to find out the value of the resolutionStatus attribute. The key here is to find out the value of statusId, riskId and reasonId and what each stands for to make sense of whether the case was marked as positive, false, etc.

You can use the API call "SEQ-1f: Get the resolution toolkit for a group" to find out which statusId value found in the resolutionStatus attributes corresponds to which status. It is important to use the correct group Id to fetch this JSON of this API call as the resolution toolkit and its values changes for each group.

Regarding the question, "Since user is declining it on WC1 site, should this rescreening call be resulting in flag or not?"

This will not result in any flag. As this has been marked as Positive, only the resolutionStatus attribute would change. But kindly the event that changes the resolutionStatus is the action of resolving cases and not rescreening. Rescreening the already screened case, would make our system to search for new hits if any or updates on the existing matches. In both cases, the re screening would not update the resolutionStatus of any match. If you re screen the case and the WC1 system finds that there is an update on the match that was previously marked as positive/false or resolved in general, only then it would raise a flag. The flag would be in the form of marking a change in the attribute "reviewRequired".

As you can see currently, the "reviewRequired" has the below values:

"resultReview":{"reviewRequired":false,"reviewRequiredDate":"2018-11-08T00:00:00.000Z","reviewRemark":null,"reviewDate":null}

If there was a new update on this already resolved case due to re screening today, the above JSON would change to

"resultReview":{"reviewRequired":true,"reviewRequiredDate":"2018-12-12T00:00:00.000Z","reviewRemark":null,"reviewDate":null}

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.