Searching an organisation by country using Zero footprint screening API

I want to search an organization by country. The JSON which I currently use is the below one. When I use the below JSON, I am getting the below error.

{

"groupId": "0a360b84-6d9a-189f-9b80-b0c000005df2",
"entityType": "organisation",
"providerTypes": [
"WATCHLIST"
],
"name": "VIDEO S A .-",
"secondaryFields": [
{

"typeId": "SFCT_6",
"value": "ARG"
}
]
}


Error:

[

{

"error": "INVALID_ENTITY_TYPE",

"cause": "Entity type is mandatory and must be one of: INDIVIDUAL, ORGANISATION, VESSEL, UNSPECIFIED and must be compatible with each provider type used in screening a case."

}

]


Please let me know the correct JSON format to search an organization by country.


Best Answer

Answers

  • @Kathirvel.Dhanavelu,

    Please use the "entityType": "ORGANISATION" instead of "entityType": "organisation" as it is case sensitive.

    Hope this clarifies your concern.

  • We have used the below JSON now.

    {

    "groupId": "0a3687d0-6c28-1345-9b12-599f000008d2",
    "entityType": "ORGANISATION",
    "providerTypes": [
    "WATCHLIST"
    ],
    "name": "VIDEO S A .-",
    "secondaryFields": [
    {

    "typeId": "SFCT_6",
    "value": "ARG"
    }
    ]
    }

    We are getting the below response from Zero footprint screening API

    {

    "results": [],

    "nameTransposition": false

    }

    Please check and let us know whether this is the valid output or whether we need change any attribute in the input JSON ?.