Additional legal links and Check age gate options
We've documented additional legal links in Developer Details and the new options parameter on the Check age gate API so you can show platform-specific legal documents (e.g., Xbox, PlayStation, Steam) in consent flows.
What's New
Additional legal links (Developer Details)
In Compliance Studio, on the Developer Details tab for a product, you can now add optional Additional legal links that appear in consent flows:
- Title and Link: Localized display title and URL (same language options as your main legal documents).
- Variant ID: Identifier used when calling the Check age gate API (e.g.,
xbox-tos,playstation-privacy-policy). Required if Always display is off. - Always display: When on (default), the link is always shown in consent flows. When off, the link is only shown when your game calls the age-gate API with the matching variant ID in
options.
Use these when your game is distributed on multiple platforms and each platform requires different legal document URLs.
Check age gate API — options parameter
The POST /api/v1/age-gate/check request body now supports an optional options object:
- termsOfServiceDocument: Variant ID for Terms of Service (must match a configured additional legal link).
- privacyPolicyDocument: Variant ID for Privacy Policy (must match a configured additional legal link).
When a challenge is created, the consent screen shows the requested legal links instead of the default product Privacy Policy and Terms of Service.
Documentation
- Developer Details — Basic information (including Additional legal links)
- Check age gate (request body and
CheckAgeGateRequestOptions)