Step 7: Open Consent Notice
Once you have the redirectUrl, your application must open it so the user can review and act on the consent notice.
Where Can It Be Opened?
🌐 Web Applications
- New tab
- Popup window
- Embedded iframe
Example:
window.location.href = redirectUrl;
📱 Mobile Applications
🤖 Android
🍎 iOS
- Mobile browser
- In-app browser
- WebView (Android/iOS)
What Happens on the Consent Page?
On the Consent Notice page, the user can:
- Review purpose and data details
- Grant consent
- Revoke consent (if applicable)
After user action:
- Consent Manager processes the decision
- A consent receipt is generated
- A webhook notification is sent to the Data Fiduciary (if configured)
Important Notes
-
Ensure the user session context is maintained before redirecting.
-
Handle cases where user closes the browser without completing action.
-
Always rely on webhook or Consent Verify API to confirm final status.