Consumer View Requested Report
A consumer (renter) requests to view their own report in your application. Your backend fetches it with the consumer report endpoint; relay checks that the report exists and hasn't expired before returning it.
End User UXPartner Backendrelay API
Steps
- Consumer requests to view their report in your application.
- Gather the consumer (renter) ID and make the API call.
- Call
GET /api/experian/renters/{renterId}/report, the response format isHTML. - relay validates the report — it must exist and be unexpired — then fetches and returns it. If a check fails, the response says which. (Expiry can be checked separately with
GET /api/experian/renters/{renterId}/report-expiry.) - Render the returned HTML report (or the response message when a check failed). Recommended: persist the request and response timestamps.
- Display the report and response message to the consumer.
Related workflows
- Consumer Authentication — how the report gets created in the first place
- Consent to Share Report — sharing this report with an end user
- End User View Shared Report — the end-user-side equivalent