Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • Screening /
  • World-Check One /

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

Overview |  Quickstart |  Documentation |  Downloads

avatar image
Question by otkachova · Jan 23, 2019 at 05:03 AM · world-checkworld-check-onescreeningresponsetemplate

Call for the templates of API response. Empty json arrays

Hello,

We faced with the issue. Responses to the API calls "SEQ-screen-sync-individual: Perform Synchronous Screening: Individual", "SEQ-screen-sync-organisation: Perform Synchronous Screening: Organisation", "SEQ-case-create-vessel: Save a case: Vessel" all time is empty.

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

For example, the request for SEQ-screen-sync-individual: Perform Synchronous Screening: Individual

POST /v1/cases/screeningRequest Date: Wed, 23 Jan 2019 09:59:02 GMT Content-Type: application/json Authorization: Signature keyId="ffd37d13-36f9-4efc-ab5e-d9ec9dbee778",algorithm="hmac-sha256",headers="(request-target) host date content-type content-length",signature="6iO1VyttxpY4N2pFM/wiY+1Xfo/W7NSDeFrJS9dstZ4=" Content-Length: 968 cache-control: no-cache Postman-Token: 3881ac14-0c25-44ef-bf8b-1becafca8d8b User-Agent: PostmanRuntime/7.4.0 Accept: */* Host: rms-world-check-one-api-pilot.thomsonreuters.com accept-encoding: gzip, deflate { "groupId":"0a3687cf-6523-1d64-994c-e1190000027b", "entityType": "INDIVIDUAL", "providerTypes": [ "WATCHLIST" ], "name": "putin", "secondaryFields":[ { "typeId":"SFCT_1", "value":"MALE" }, { "typeId":"SFCT_2", "dateTimeValue":{ "timelinePrecision":"ON", "pointInTimePrecision":"DAY", "utcDateTime":316310400000, "timeZone":null } }, { "typeId":"SFCT_3", "value":"USA" }, { "typeId":"SFCT_4", "value":"AUS" }, { "typeId":"SFCT_5", "value":"ABW" } ], "customFields":[ { "typeId":"SFCT_1", "value":"" }, { "typeId":"--REQUIRED-VALUE-MISSING--", "value":"custom field 2 sample value" }, { "typeId":"--REQUIRED-VALUE-MISSING--", "value":"mandatory custom field sample value" } ] }

The responce is follow

HTTP/1.1 500 status: 500 X-Application-Context: application Cache-Control: no-cache, no-store, max-age=0, must-revalidate Pragma: no-cache Expires: 0 X-XSS-Protection: 1; mode=block X-Frame-Options: DENY X-Content-Type-Options: nosniff Date: Wed, 23 Jan 2019 09:59:01 GMT Content-Type: application/json Transfer-Encoding: chunked X-Cnection: close Server: "" []

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Could you assist us with the issue: to provide the templates of the responses for the cases mentioned below or the set of test data for found matches?

Thank you in advance!

People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

1 Reply

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by Irfan.Khan · Jan 23, 2019 at 09:04 AM

@otkachova

I see the payload you are passing is incorrect.

If you do not want to use custom fields, you can use the below JSON:

{  "groupId":"{
                {group-id}}",  "entityType": "INDIVIDUAL",  "providerTypes": [  "WATCHLIST"  ],  "name": "putin",  "secondaryFields":[ {    "typeId":"SFCT_1",  "value":"MALE"  },  {    "typeId":"SFCT_2",  "dateTimeValue":{    "timelinePrecision":"ON",  "pointInTimePrecision":"DAY",  "utcDateTime":316310400000,  "timeZone":null  }  },  {   "typeId":"SFCT_3",  "value":"USA"  },  {    "typeId":"SFCT_4",  "value":"AUS"  },  {    "typeId":"SFCT_5",  "value":"ABW"  }   ],  "customFields":[]}

Please replace the value of { {group-id}} with the group Id you would like to use to screen the case.

If you want to use custom fields, you can use the belowJSON:

{  "groupId":"{
                {group-id}}",  "entityType": "INDIVIDUAL",  "providerTypes": [  "WATCHLIST"  ],  "name": "putin",  "secondaryFields":[ {    "typeId":"SFCT_1",  "value":"MALE"  },  {    "typeId":"SFCT_2",  "dateTimeValue":{    "timelinePrecision":"ON",  "pointInTimePrecision":"DAY",  "utcDateTime":316310400000,  "timeZone":null  }  },  {   "typeId":"SFCT_3",  "value":"USA"  },  {    "typeId":"SFCT_4",  "value":"AUS"  },  {    "typeId":"SFCT_5",  "value":"ABW"  }   ],  "customFields":[   {    "typeId":"{
                {custom-field-1}}",  "value":"custom field 1 sample value"  },  {    "typeId":"{
                {custom-field-2}}",  "value":"custom field 2 sample value"  },  {     "typeId":"{
                {custom-field-3}}",  "value":"mandatory custom field sample value"  }  ]}

Please replace the value of "{ {custom-field-1}}", "{ {custom-field-2}}","{ {custom-field-3}}" with the typeId values you can obtain by calling the API "SEQ-pre-group-case-template: Get the case template for a group". You can get the entire template from this API. Also, replace the value of the attribute "values" to relevant text (it is a free text field).

If you are using custom fields, you might have to add custom fields to your account by using the admin UI of the WC User Interface. After this, you can call the "SEQ-pre-group-case-template: Get the case template for a group" to find the typeIds of the custom field and then plug them in the above JSON and send the request.

Please have a look at this link to for more detailed steps on how to successfully screen cases.

https://developers.thomsonreuters.com/customer-and-third-party-screening/world-check-one-api/quick-start?content=54647&type=quick_start

Thanks,

Irfan Khan

Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
9 People are following this question.

Related Questions

"cases/{ {case-system-id}}/screeningRequest" is not updating case results when called again after case update request

Why does i get the blank response while getting case template by group id which i created?

Sanction screening on instrument level

Does World-Check One API support multiple languages and identifiers for the same entity?

GET /cases/{caseSystemId}/results returns code 200 but results are empty

  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Electronic Trading
    • Generic FIX
    • Local Bank Node API
    • Trading API
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • Intelligent Tagging
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open Calais
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • RDMS
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • Workspace SDK
    • Element Framework
    • Grid
  • World-Check Data File
  • 中文论坛
  • Explore
  • Tags
  • Questions
  • Badges