> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Consent Configs # Type: Consent Config Object # Link: https://dev.wix.com/docs/api-reference/business-management/cookie-consent-policy/consent-configs/consent-config-object.md ## Description: A consent config defines user consent settings for an app's embeds on a site. ## Schema: ```json Type: Consent Config Object | type: ConsentConfig Description: A consent config defines user consent settings for an app's embeds on a site. - name: id | type: string | description: Consent config ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the consent config is updated. To prevent conflicting changes, the current revision must be passed when updating the consent config. Ignored when creating a consent config. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the consent config was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the consent config was last updated. - name: configType | type: string | description: Type of consent config. Currently only the `TAG_OVERRIDE` type is supported. enum: UNKNOWN_CONFIG, TAG_OVERRIDE - name: consentCategory | type: string | description: The consent config's categories for compliance with privacy regulations. enum: UNKNOWN_CATEGORY, essential, functional, analytics, advertising, data_to_third_party - name: createdBy | type: CreatedBy | description: Consent config creator. - name: userId | type: string | description: User ID. - name: appId | type: string | description: App ID. - name: extendedFields | type: ExtendedFields | description: Custom field data for the consent config. Extended fields must be configured in the app dashboard before they can be accessed with API calls. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Consent config tags, meaning labels for administrative purposes. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: Array | description: List of tag IDs - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. ```