Download a Report by ID

Retrieves the download information for a specific compliance report identified by its unique reportId.

This endpoint provides the URL to download the report file, along with metadata such as the file name and the expiration time for the download link.

Use this endpoint after generating a report to access the final output. Ensure the reportId corresponds to a valid and completed report in the system.

SecuritybearerToken
Request
path Parameters
reportId
required
string <uuid>

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

Responses
200

Success. Returns the download URL, file name, and expiration timestamp for the specified report.

400

Bad Request

401

Unauthorized

403

Forbidden

409

Conflict

502

Server Error

get/compliance/kyc-protect/reports/{reportId}/download
Request samples
Response samples
application/json
{
  • "downloadUrl": "string",
  • "fileName": "string",
  • "expiresAt": "2019-08-24T14:15:22Z"
}