OBJECT

Consent

The consent status returned for the current user.

link GraphQL Schema definition

1type Consent {
2
3# The unique identifier of a consent status.
4id: ID!
5
6# Identifier to determine whether consent is denied due to user underage.
7isDeniedUnderage: Boolean!
8
9# Privacy law, e.g. CCPA or GDPR.
10privacyLawName: PrivacyLawName!
11
12# Identifier to determine whether should notification to the user.
13shouldShowNotification: Boolean!
14
15# Identifier to determine whether should show the consent settings page to the
16# user.
17shouldShowSettingsPage: Boolean!
18
19# A list of vendor consent status of a user.
20vendorConsentStatus: VendorConsent!
21
22# A list of vendor consent status of a user.
23vendorStatus: [VendorConsentStatus!]! @deprecated( reason: "Use vendorConsentStatus instead" )
24
25}