Skip to main content
POST
/
aml
/
ongoingMonitoring
/
registerIndividual
Register Individual for Monitoring
curl --request POST \
  --url https://sandbox-umbrella-api.azurewebsites.net/api/services/aml/ongoingMonitoring/registerIndividual \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profileId": "8dac-b5393ce5ef3a",
  "names": "Elon Musk",
  "gender": "male",
  "searchAll": "<string>",
  "dob": "1971/06/28",
  "fuzzySearch": "<string>"
}'
This response does not have an example.
For a usage description of the AML Ongoing Monitoring Register Individual Service, please refer to the AML page.

Endpoint

POST /aml/ongoingMonitoring/registerIndividual

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 individual profile in the system.

Example:

"8dac-b5393ce5ef3a"

names
string
required

Full name of the individual (e.g., "Elon Musk").

Example:

"Elon Musk"

gender
string

Gender of the individual (optional, e.g., "male").

Example:

"male"

searchAll
string

This field cannot be combined with the names parameter.

dob
string

Date of birth of the individual (optional).

Example:

"1971/06/28"

Enables fuzzy search for the name (optional).

Response

Successfully registered individual for monitoring.

I