Privacy Policy Link
Overview
Merchants can configure a custom Privacy Policy URL that is displayed inside the CCG widget. When set, users see a link to your privacy policy during the checkout or wallet management flow.
If no URL is provided, the widget defaults to the Optum Privacy Policy.
Configuration
Set the privacyPolicyUrl field inside the config object of the POST /sessions request.
const config = {
modes: ['PAYMENT'],
privacyPolicyUrl: 'https://your-domain.com/privacy-policy',
};
As part of the full session request:
{
"config": {
"modes": ["PAYMENT"],
"privacyPolicyUrl": "https://your-domain.com/privacy-policy"
}
}
Requirements
| Requirement | Details |
|---|---|
| Format | Valid absolute URL (https://) |
| Language | If supporting multiple languages, ensure the URL resolves to a translated version for each locale |
| Accessibility | Page must be publicly accessible — no authentication required |
Localization Note
The widget supports English and Spanish. If you use language translation, ensure your privacy policy URL links to the appropriately translated page. The widget does not auto-translate third-party privacy policy pages.
See Localization for language configuration details.