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?
For a deeper look into our World Check One API, look into:
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?
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
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:
{ "reversed": null, "targetEntityId": "e_tr_wco_12345", "targetExternalImportId": "ei_trwc_12345", "type": "AFFILIATED_COMPANY" }
{ "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?