What else do I need to hit the API

Hello, i was trying to hit the World Check One API following the quickstart guide.

I downloaded the Postman collection and onto de environment data i completed api secret and api key with the values you gave me.

After that i hit on run inside Postman and an error occurred: `TypeError: Cannot read property sigBytes of undefined`

Reading along the quickstart i found out I also need a Product Key, a Group ID, a Group name, a Case ID and a Case System Id, but couldn't found exacly what those values are and what they mean.

Hope i explained correctly and thank you in advance

Best Answer

  • Vivek Kumar Singh
    Answer ✓

    Hi @isabel.ivagnes

    As discussed over the call, 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"

    }

Answers