- Retrieve an AML audit report
Retrieves an Anti-Money Laundering (AML) audit report for a person with a specified ID. The maximum reporting period is 180 days.
The report includes linked customers, screening summary metrics, screening history, and related transactions for the selected period.
Use the Accept header to select the response format: application/json (default), application/pdf, or text/csv.
Each section of the report includes at most 10,000 records, and the truncated property is true when a section reaches that limit.
Criteria for filtering collection items. This field requires a special format. Use , to specify multiple allowed values. Use ; to specify multiple fields.
For more information, see Search filters.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/experimental/reports/aml-audit-reports
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/experimental/reports/aml-audit-reports
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/experimental/reports/aml-audit-reports
- SecretApiKey
- JWT
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/experimental/reports/aml-audit-reports?personId=string&periodStart=2019-08-24T14%3A15%3A22Z&periodEnd=2019-08-24T14%3A15%3A22Z&filter=string' \
-H 'Accept: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE'Report retrieved.
Person-level AML screening status for the selected period.
Transactions for customers linked to the person in the selected period.
- application/json
- application/pdf
- text/csv
{ "personId": "string", "status": "clear", "linkedCustomers": [ { … } ], "summary": { "totalChecks": 0, "hitCount": 0, "lastCheckTime": "2019-08-24T14:15:22Z" }, "screeningHistory": [ { … } ], "transactions": [ { … } ], "periodStart": "2019-08-24T14:15:22Z", "periodEnd": "2019-08-24T14:15:22Z", "truncated": true }