OBJECT
TCFCookieVendor
GDPR cookie vendors for vendors that support TCF strings, for a user.
link GraphQL Schema definition
1 type TCFCookieVendor { 2 3 # User content status for each vendor. 4 : ConsentStatus! 5 6 # If it’s an advertising, analytics, or essential cookie. 7 : CookieVendorType! 8 9 # List of features this vendor uses. 10 : [ConsentFeature!] 11 12 # A flag that shows if the consent is given by the user or by consent service as 13 # default value. 14 : Boolean! 15 16 # A flag that shows if the vendor should be visible to management page. 17 : Boolean! 18 19 # Vendor name. 20 : VendorName! 21 22 # Url to the Vendor's privacy policy. 23 : String! 24 25 # List of purposes this vendor uses. 26 : [ConsentPurpose!] 27 28 # List of special features this vendor uses. 29 : [ConsentSpecialFeature!] 30 31 # List of special purposes this vendor uses. 32 : [ConsentSpecialPurpose!] 33 34 }