How do I extract Linked Companies and Individual from SEQ5c Get World Check Profile

My client downloaded a PDF report from Thomson Reuters dashboard. It display linked companies and individual info on the PDF. See attached screenshot. I wonder how can I extract those info from SEQ5c API?

image

Best Answer

  • brian.bourgault
    Answer ✓

    Hi @patrick14,

    Yes to retrieve the World-Check One data for an associate you would call SEQ-5c with the WC1 profile id of the associate...

    Brian

Answers

  • Hi @patrick14,

    Using SEQ-5c: Get a World-Check profile, if you want to retrieve the profile entity information worldcheck-profile-id is required. You can get worldcheck-profile-id from SEQ-5b: Get screening results.

    This SEQ-5c returns a specific subclass of Entity, depending on its particular ProfileEntityType discriminator field. Please note in the context of World-Check One, "Profile" and "Entity" are synonymous concepts.
    The Entity sub classes corresponding to each type of entity are:


    COUNTRY : CountryEntity


    INDIVIDUAL : IndividualEntity

    ORGANISATION : OrganisationEntity

    VESSEL : VesselEntity

    Hope this will help.

    Thanks,

    Shilpi

  • Hi @shilpi.saha thanks for the concept. Now, back to my same question, how can I extract those info as shown on PDF?

    Let me explain the approach here and please help to correct me if anything is wrong:

    1. I gotten an Individual profile using SEQ-5c which is the same profile client generated into PDF as shown in my first question.
    2. Within the PDF, there's list of Linked Companies and Individuals
    3. Within my SEQ-5c response JSON there's this array list = "associates"
      • Each object within the list contains either the linked company info as below:

    {
    "reversed": null,
    "targetEntityId": "e_tr_wco_12345",
    "targetExternalImportId": "ei_trwc_12345",
    "type": "AFFILIATED_COMPANY"
    }

      • Or the linked individual info as below:

      {
      "reversed": null,
      "targetEntityId": "e_tr_wci_56789",
      "targetExternalImportId": "ei_trwc_56789",
      "type": "ASSOCIATE"
      }

      4. I would have to loop through the "associates" array and get each object's targetEntityId and call SEQ-5c again to extract one value for name and one value for type (Individual, Organization, Corporate, Bank) from the response. These responses will be the same as what printed on PDF?