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

Overview |  Quickstart |  Documentation |  Downloads

question

Upvotes
Accepted
28 3 4 9

Custom Fields

Hi,

How to create and use custom fields ?

Thanks,
Cady

world-checkworld-check-one
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.

1 Answer

· Write an Answer
Upvotes
Accepted
1.4k 5 2 2

Hi @cadyh

We would like to let you know that "One or multiple Custom Fields can be created by the Client or Group Administrator and are used to capture additional reference information relevant to the entity being screened. For example, Account Manager, Internal Reference, and Cat Code. These fields may be marked as required or optional, depending on the settings established by the group administrators"

Note: Custom Fields do not affect the screening results, rather they are used to capture reference details and can also be used for filtering in the Case Manager.

To know more on Custom Fields setting we request you to please navigate to "CUSTOM FIELDS section on https://my.refinitiv.com/content/dam/myrefinitiv/products/10834/en/UserGuides/611012.pdf


Once the Custom Fields configuration is completed, you can use the "SEQ-pre-group-case-template: Get the case template for a group" API call to retrieve the Custom Fields.

And also you can use those Custom Fields value to screen an entity via "SEQ-screen-sync-simple: Perform Synchronous Screening: Simple" API call. Sample Payload outlined below:

{

"caseId": "Client Case Id",

"name": "John Smith",

"providerTypes": [

"WATCHLIST"

],

"customFields": [

{

"typeId": "Custom Field Id 1",

"value": "Reference Id 1234567"

},

{

"typeId": "Custom Field Id 2",

"value": "Deal Id 1234567"

}

],

"secondaryFields": [

{

"typeId": "SFCT_1",

"value": "MALE"

},

{

"typeId": "SFCT_2",

"dateTimeValue": "1990-11-20"

}

],

"nameTransposition": true,

"groupId": "Client Group Id",

"entityType": "INDIVIDUAL"

}

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.