curl --location 'https://rest-api.argosidentity.com/v3/submission/aml/monitor/{worklistId}/{recordId}' \
--header 'x-api-key: {yourAPIKey}'
{
    "name": "test",
    "id": "mes3uzetD55S_evcka62mes3ugzb_mg",
    "submissionId": "evcka62mes3ugzb_mg",
    "nationality": "KOR",
    "status": "screenedNoMatches",
    "dob": "1992-06-13",
    "email": "test@test.com",
    "memo": "",
    "tags": [],
    "admin": "yunjik@argosidentity.com",
    "updateTime": "2025-08-26T05:28:20.165Z",
    "openCount": 0,
    "falsePositiveCount": 0,
    "truePositiveCount": 0,
    "discardedCount": 0
}
This endpoint supports secure data transmission with AES-256 encryption when the option is enabled.

Endpoint

GET /submission/aml/monitor/{worklistId}/{recordId}

Base URL

https://rest-api.argosidentity.com/v3/submission/aml/monitor

Authentication

Include your API key in the request header:
x-api-key
string
required
Your API key for authentication

Path Parameters

worklistId
string
required
The ID of the worklist containing the record
recordId
string
required
The unique identifier of the ongoing monitoring record to retrieve

Request Example

curl --location 'https://rest-api.argosidentity.com/v3/submission/aml/monitor/{worklistId}/{recordId}' \
--header 'x-api-key: {yourAPIKey}'

Response

Success Response

{
    "name": "test",
    "id": "mes3uzetD55S_evcka62mes3ugzb_mg",
    "submissionId": "evcka62mes3ugzb_mg",
    "nationality": "KOR",
    "status": "screenedNoMatches",
    "dob": "1992-06-13",
    "email": "test@test.com",
    "memo": "",
    "tags": [],
    "admin": "yunjik@argosidentity.com",
    "updateTime": "2025-08-26T05:28:20.165Z",
    "openCount": 0,
    "falsePositiveCount": 0,
    "truePositiveCount": 0,
    "discardedCount": 0
}

Response Fields

name
string
required
Full name of the person being monitored
id
string
required
Unique identifier for the ongoing monitoring record
submissionId
string
required
The submission ID associated with this record
nationality
string
required
Country code of the person’s nationality (e.g., “KOR” for Korea)
status
string
required
Current screening status of the record
dob
string
required
Date of birth in YYYY-MM-DD format
email
string
Email address of the person being monitored
memo
string
Administrative notes or comments about the record
tags
array
Array of tags associated with this record
admin
string
required
Email address of the administrator who last modified the record
updateTime
string
required
ISO 8601 timestamp of the last record update
openCount
number
required
Number of open matches found during screening
falsePositiveCount
number
required
Number of false positive matches identified
truePositiveCount
number
required
Number of confirmed positive matches
discardedCount
number
required
Number of discarded or invalid matches

Error Response

{
    "errorCode": "invalid_record",
    "errorMessage": "Some records do not exist"
}

Error Codes

Error CodeHTTP StatusDescription
invalid_record400The specified record ID does not exist
invalide_worklist400The specified worklist ID is invalid
invalid_project400Missing project ID or invalid API key

Secure Data Transmission

This endpoint supports secure data transmission with AES-256 encryption when the option is enabled. The encryption/decryption method follows the same approach as other secure endpoints.