---
title: Setting consent
description: Learn how to manage a user's consent 
lastModified: 2025-08-20
availableIn:
  - framework: 'javascript'
    url: '/docs/frameworks/javascript/store/setting-consent'
    title: 'JavaScript'
  - framework: 'next'
    url: '/docs/frameworks/next/hooks/use-consent-manager/setting-consent'
    title: 'Next.js'
  - framework: 'react'
    url: '/docs/frameworks/react/hooks/use-consent-manager/setting-consent'
    title: 'React'
---
### setSelectedConsent()

This method sets a user's consent choice but doesn't save it.

```tsx
setSelectedConsent('marketing', true) 
```

### saveConsents()

This method should be called after the user saves their consent preferences, e.g., via an 'Accept all' button or a dialog save. This function handles logic such as calling the backend and the `onConsentSet` callback.

```tsx
saveConsents('all') // User has accepted to all
saveConsents('custom') // Uses the consents set by setSelectedConsent()
saveConsents('necessary') // User rejects all 
```

### setConsent()

Useful for buttons like "Enable Marketing Consent", this will save the user's new consent by calling `saveConsents()`.

```tsx
setConsent('marketing', true) 
```
