Skip to main content

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

  1. Consumer requests to view their report in your application.
  2. Gather the consumer (renter) ID and make the API call.
  3. Call GET /api/experian/renters/{renterId}/report, the response format is HTML.
  4. 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.)
  5. Render the returned HTML report (or the response message when a check failed). Recommended: persist the request and response timestamps.
  6. Display the report and response message to the consumer.