Skip to main content

Create Monitoring

Create AML monitoring

Authorizations:
API key pair
Request Body schema: application/json
required
isSubscribed
required
boolean

Should the expiration of this AML monitoring be automatically extended or not.

required
any (AmlMonitoringAmlCheckRequest)
tags
Array of strings <= 5 items [ items [ 1 .. 32 ] characters ^[^,]+$ ]
Default: []

List of case-sensitive strings. Each tag can not be longer than 32 characters.

Responses

Request samples

Content type
application/json
{
  • "isSubscribed": true,
  • "amlCheck": {
    },
  • "tags": [ ]
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "isSubscribed": true,
  • "status": "ACTIVE",
  • "expiration": "2019-08-24T14:15:22Z",
  • "created": "2019-08-24T14:15:22Z",
  • "amlCheck": {
    },
  • "tags": [ ]
}

Update

Patch method allowes to add monitoring extention (yearly) and add tags for better sorting

Partially update AML monitoring

Authorizations:
API key pair
path Parameters
id
required
string <uuid>

A UUID string identifying this AML monitoring.

Request Body schema: application/json
isSubscribed
boolean

Should the expiration of this AML monitoring be automatically extended or not.

tags
Array of strings <= 5 items [ items [ 1 .. 32 ] characters ^[^,]+$ ]
Default: []

List of case-sensitive strings. Each tag can not be longer than 32 characters.

Responses

Request samples

Content type
application/json
{
  • "isSubscribed": true,
  • "tags": [ ]
}

Response samples

Content type
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "isSubscribed": true,
  • "status": "ACTIVE",
  • "expiration": "2019-08-24T14:15:22Z",
  • "created": "2019-08-24T14:15:22Z",
  • "amlCheck": {
    },
  • "tags": [ ]
}