Skip to main content
POST
/
aml
/
ongoingMonitoring
/
registerEntity
Register Entity for Monitoring
curl --request POST \
  --url https://sandbox-umbrella-api.azurewebsites.net/api/services/aml/ongoingMonitoring/registerEntity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profileId": "8dac-b5393ce5ef3a",
  "names": "Tesla",
  "searchAll": "<string>",
  "fuzzySearch": "<string>"
}'
For a usage description of the AML Ongoing Monitoring Register Entity Service, please refer to the AML page.

Endpoint

POST /aml/ongoingMonitoring/registerEntity

Swagger

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
profileId
string
required

Unique identifier for the entity profile in the system.

Example:

"8dac-b5393ce5ef3a"

names
string
required

Full name of the entity (e.g., "Tesla").

Example:

"Tesla"

searchAll
string

This field cannot be combined with the names parameter.

Enables fuzzy search for the name (optional).

Response

Successfully registered entity for monitoring.

I