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.
BIDConsent.setGDPR(true, context);
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).
BIDConsent.setCCPA(true, context);
COPPA
Set the COPPA 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)
BIDConsent.setCOPPA(true, context);
Last updated
Was this helpful?