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.
Security
bearerToken
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/reports/{reportId}/download
- Production serverhttps://connect.creditsafe.com/v1/compliance/kyc-protect/reports/{reportId}/download
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/reports/{reportId}/download' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Success. Returns the download URL, file name, and expiration timestamp for the specified report.
The direct URL to download the report file. This URL is valid only until the expiration time specified in the expiresAt field.
Response
{ "downloadUrl": "string", "fileName": "string", "expiresAt": "2019-08-24T14:15:22Z" }