---
title: "Service: /groups/{group}/unsubscribe [GET]"
source: https://dev.pageseeder.com/api/services/unsubscribe-GET.html
description: "GET endpoint for returning group and subgroup memberships for a member, allowing them to review notification settings and remove themselves from groups using a valid unsubscribe token."
last_updated: 2026-09-02T11:36:07+10:00
document_type: api_endpoint
operation_id: membership-GET
resource_id: membership
path_template: /groups/{group}/unsubscribe
http_method: GET
api_category: membership
implementation_version: 6.2005
api_since: 5.9300
deprecated_since: null
obsolete_since: null
api_support: supported
cache_control: null
generated_at: 2026-09-02
tokens: ~374
---

# /groups/\{group\}/unsubscribe \[GET\]

## Description

Returns a list of [group](../../reference/glossary/group.md) and [subgroup](../../reference/glossary/subgroup.md) memberships for a [member](../../reference/glossary/member.md) for the group specified so they can decide whether to change [notification](../../reference/glossary/notification.md) settings or remove themselves from one or more groups.

## Parameters

| Name | Description | Required | Type | Default |
| --- | --- | --- | --- | --- |
| token | Unsubscribe token for the group and member | yes | string |  |

## Permission

A valid token for the group and member can invoke this service.

## Response

The XML returned is one or more `<membership>` elements inside an `<unsubscribe>` element:

```xml

<unsubscribe email="[member's email]">
  <membership id="[membership id]" 
              email-listed="[true|false]" 
              notification="[notification]" 
              flags="[flags]"
              status="normal" 
              role="[role]" 
              [subgroups="[subgroups]"]
              [override="[overridden attributes]"]>
    <group|project id="[group id]" 
                   name="[group name]" 
                   description="[description]" 
                   owner="[owner]" 
                   [relatedurl="[url]"] />
  </membership>
  <membership ...> ... </membership>
  ...
</unsubscribe>
 
```

## Error Handling

| 0x102A | Token is invalid |
| --- | --- |
| 0x102B | Token has expired |

