Skip to main content

Ongoing AML

note

Ongoing monitoring services for Media Watcher and Adverse Media are not offered at this time within AML Watcher.

Our API helps you stay ahead of risks by continuously monitoring individuals and entities for any changes in their risk profiles. It keeps track of updates to sanctions lists, watchlists, and PEP statuses, sending timely alerts whenever risk levels change. This ensures your team is always aware of potential threats, enabling you to respond quickly and maintain compliance. Designed to adapt as your needs grow, it’s a powerful tool for staying compliant and protecting your organization from financial crime in an ever-changing regulatory landscape.

Endpoint: https://api.amlwatcher.com/api/monitor

Method: POST

Sample Request
POST /api/monitor HTTP/1.1
Host: api.amlwatcher.com
Authorization: Bearer Token
Content-Length: 75

{
"search_reference": "65058a4565bfe7295ad13f6f",
"is_monitor": 0
}

Request

ParametersRequiredTypeDescription
search_referenceYesStringThe reference to the search where user want to enable ongoing AML.
is_monitorYesIntegerIs monitor is used to specify whether user want to enable or disable ongoing monitoring for a specific search.
Note: The default value of is_monitor is 0.
Example: 1.

Response

ParametersDescription
errorWhenever there is an error in your request, this param will have details of that error; otherwise it’ll remain empty.
statusThe status field is set to either “SUCCESS” or “FAIL”, indicating that the API request resulted in a successful or failure/error condition respectively.
dataAn object containing ongoing AML status of a search.
Sample Response
{
"data": {
"message": "Monitoring enabled for this search"
},
"error": false,
"status": "SUCCESS"
}