Search Details PDF

The overall details that are provided in the search details page is available to download via pdf,

A full PDF report is available for download, offering a comprehensive overview of due diligence findings.

POST https://secctrl.tutelar.io/api/v1/aml/search/download-pdf/:sanctionId

Content-Type: application/pdf

Complete data stream of the file contents.

Path Param values :

PathParameterTypeIs MandatoryDescription

sanctionId

String

Yes

sanctionId is unique id, to download a sanction details.

Query Parameter

Query ParameterTypeIs MandatoryDescription

mode

String

Yes

Need to differentiate where search occurs as in the General section or in the Advance Section. Mode(general or advance)

sdnType

String

No

sdnType is required if mode is advance. sdnType(individual or entity)

searchTerm

String

No

searchTerm is required if mode is general.

Post parameters description is given below,

Post ParameterTypeIs mandatoryDescription

name

String

No

Search the name field and it applies only query param “mode” is advance.if sdnType is individual, then name field searches on person names.if sdnType is entity, then name field searches on company or organisations.

date

String

No

Search the date field and it applies only query param “mode” is advance. if sdnType is individual, then date field searches on birthdate.if sdnType is entity, then date field searches on incorporation date.

idNumber

String

No

Search the idNumber field and it applies only query param “mode” is advance.

nationality

String

No

Search the nationality field and it applies only query param “mode” is advance.

Sample post data format :

{
   "name" : "Ibrahim Ali",
   "date" : "1957-01-25"
}

Success Response:

Response as in stream by ContentType application/pdf.

Failure response:

{
   "success": false,
   "code": 1001,
   "message": "Mode field is missing",
   "data": {}
}
{
   "success": false,
   "code": 1001,
   "message": "Please provide valid Sdn Type",
   "data": {}
}
{
   "success": false,
   "code": 1001,
   "message": "Please provide valid Search Term",
   "data": {}
}
{
   "success": false,
   "code": 1001,
   "message": "Please provide valid searchData",
   "data": {}
}

Last updated