Consent to Share Report
After a consumer views their report, they may consent to share it with an end user — an agent or an organization. Your backend records the consent and links the consumer's report to the end user via the sharing endpoint. This flow is the tail of Consumer Authentication (steps 14–15 there), documented standalone.
End User UXPartner Backendrelay API
Steps
- Consumer views their report in your application (see Consumer View Requested Report).
- Display the consent-to-share-report choice. If the consumer declines, the flow ends — nothing is shared.
- Gather the consumer (renter) ID and the end user (agent or organization) ID in your backend.
- Share the report with the matching end-user type —
PUT /api/experian/agents/{agentId}/renters/{renterId}orPUT /api/experian/organizations/{organizationId}/renters/{renterId}. - Persist the consent — date, time, and that the consumer consented — in your own datastore.
- Confirm to the consumer, and (recommended) notify the end user that a report has been shared with them.
Related workflows
- Revoke Consent to Share Report — the reverse operation
- End User View Shared Report — how the end user retrieves what was shared
- Consumer Authentication — this flow in its original context