Skip to main content

End User View Shared Report

An end user (agent or organization) requests to view a consumer's report that was shared with them via Consent to Share Report. relay checks that the share exists, hasn't expired, and hasn't been revoked before returning the report — every outcome flows back through the same render path in your backend.

End User UXPartner Backendrelay API

Steps

  1. End user requests to view a consumer's report in your application.
  2. Gather the consumer (renter) ID and the end user (agent or organization) ID and make the API call.
  3. Call the fetch endpoint for the end-user typeGET /api/experian/agents/{agentId}/renters/{renterId} or GET /api/experian/organizations/{organizationId}/renters/{renterId}.
  4. relay validates the share — it must exist, be unexpired, and not be revoked — then fetches and returns the shared report. If any check fails, the response says which.
  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 end user.