GET/Report/AML
1
curl -X GET "https://rest-api.argoskyc.com/v3/report/aml?resourceId={resourceId}"
- Returns an application/pdf report of AML screening result.
- AML report is provided for each 'resourceId'.
- 'resourceId' is required to download an AML report.
* means required parameters.
Parameter | Description |
---|---|
*resourceId | 'resourceId' is a unique number of a person screened as a result of AML screening. 'resourceId' can be found if a submission is screened for AML Red-Flag. Each matching AML screening result has a unique 'resourceId'. One submission may have multiple matches; therefore, multiple 'resourceId'. |
As a response, 'report.pdf' file format of the report will be downloaded.
1
curl --location --request GET 'https://rest-api.argoskyc.com/v3/report/aml?resourceId={resourceId}' \
2
--header 'x-api-key: {yourAPIKey}'
A file will be downloaded.
*file name: report.pdf
Last modified 7mo ago