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 @YES/true if user consent is given, otherwise @NO/false.

BIDConsent.GDPR = @(YES);

CCPA

Set the CCPA consent value to @YES/true if user consent is given (e.g. opt in sale), otherwise @NO/false (e.g. opt out sale).

BIDConsent.CCPA = @(YES);

COPPA

Set the COPPA value to @YES/true if user is subject to COPPA regulations (e.g. user is a kid, an age restricted user), otherwise @NO/false (e.g user is an adult)

BIDConsent.COPPA = @(YES);

Last updated