App Policy Settings
When utilizing the Mediation Networks SDKs, it is your responsibility to ensure compliance with relevant privacy regulations. If you collect and/or transmit personally identifiable information independently, you must safeguard and manage that data appropriately. Similarly, you bear full responsibility for accurately gathering and transmitting consent values and age-related flags to Bidapp and Mediation Networks, regardless of whether you employ your own consent mechanism or a third-party API.
Use developer APIs for transmitting applicable consent and age-related flags to Bidapp and Mediation Networks.
GDPR
Set the GDPR consent value to true if user consent is given, otherwise false.
BidappBinding.Instance.SetGDPRConsent(true); //e.g. consent is given
CCPA
Set the CCPA consent value to true if user consent is given (e.g. opt in sale), otherwise false (e.g. opt out sale).
BidappBinding.Instance.SetCCPAConsent(true); //e.g. consent is given
COPPA
Set the SubjectToCOPPA
value to true if user is subject to COPPA regulations (e.g. user is a kid, an age restricted user), otherwise false (e.g user is an adult)
BidappBinding.Instance.SetSubjectToCOPPA(false); //e.g. user is not a kid
Last updated
Was this helpful?