# Get consents

**Summary:** Get the list of consents in Subrite, with title, purpose, frequency, integration ID and where each consent is shown.

- Space: [Developers](https://www.subrite.no/developers)
- Source: https://www.subrite.no/developers/email-consent-lists
- Updated: 2026-09-23
- Markdown index: https://www.subrite.no/developers/llms.txt

Get the list of consents from Subrite.

- **Method:** `GET`
- **Route:** `{baseUrl}/api/v1/consents`
- **Authorization:** Bearer token (use the M2M token from [Setup](https://www.subrite.no/developers/email-setup?md=true))

<a id="success-response"></a>
## Success response

```javascript
[
  {
    id: 1,
    createdAt: '2025-01-10T07:13:33.457Z',
    metaData: null,
    integrationId: 'd5f8e923-342f-4024-9c07-677e69333142',
    title: 'Omar testing',
    description: 'Omar testing',
    image: null,
    showOnCheckoutPage: true,
    showOnMyPage: true,
    status: true,
    purpose: 'consent',
    frequency: 'Frequency',
    newsletterProviderConfigId: null,
    newsletterProviderConfig: null,
  },
];
```
