Getting a World-Check One profile: field "Positions"

When calling the "SEQ-case-investigate-world-check-profile: Get a World-Check profile", I receive a valid JSON answer, but I wasn´t able to find the information contained in the section "Positions" which I can see in the WC1 Web Interface. In which section of the JSON returned or how can I get such information?

Best Answer

  • prabhjyot.mandla
    Answer ✓

    @henrique.hissataka,

    Thanks for your query.

    In order to see the profile details, you will have to check the 'source' object in the response of the /profile endpoint.

    Example below -

                "source": {
                    "abbreviation": "PEP N",
                    "creationDate": "2013-03-21T13:41:09Z",
                    "identifier": "b_trwc_PEP N",
                    "importIdentifier": null,
                    "name": "PEP - National Government",
                    "provider": null,
                    "providerSourceStatus": "ACTIVE",
                    "regionOfAuthority": null,
                    "subscriptionCategory": "STANDARD",
                    "type": {
                        "category": {
                            "description": "This gives details of high-ranking government officials in over 200 countries. Although there may be no reason why you should not do business with these individuals, the Basle Committee on Banking supervision has stated that one should check these customers because without this due diligence, banks can become subject to reputational, operational, legal and concentration risks, which can result in significant financial cost.",
                            "identifier": "ec_4",
                            "name": "PEP",
                            "providerSourceTypes": []
                        },
                        "identifier": "t_trwc_8",
                        "name": "National Government" // Position details
                    }
                }

    Hope this clarifies your concern.