Retrieve a Single Report by ID

Fetches the details of a single compliance report identified by its unique reportId.

This endpoint allows users to retrieve the full metadata and status of a specific report, including its creation details, criteria, and expiration timeline.

Use this endpoint to inspect or verify the information of an existing report, or to confirm its current status (e.g., inProgress, completed, failed).

Ensure that the reportId provided corresponds to an existing report in the system.

SecuritybearerToken
Request
path Parameters
reportId
required
string <uuid>

The unique identifier of the report to be retrieved. Must be a valid UUID that corresponds to an existing report in the system.

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

409

Conflict

502

Server Error

get/compliance/kyc-protect/reports/{reportId}
Request samples
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "fileName": "string",
  • "status": "submitted",
  • "type": "amlAlert",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdById": 0,
  • "createdByUser": "string",
  • "modifiedAt": "2019-08-24T14:15:22Z",
  • "criteria": {
    },
  • "expiresAt": "2019-08-24T14:15:22Z",
  • "correlationId": "string"
}