---
title: "Service: /members/{member}/invitations [GET]"
source: https://dev.pageseeder.com/api/services/list-member-invitations_get.html
description: "This API endpoint retrieves all pending group invitations for a specified member. It returns a list of membership elements with \"invited\" status, or an empty list if no invitations exist. Only the member or administrators can access this service."
last_updated: 2026-09-08T14:02:13+10:00
document_type: api_endpoint
operation_id: membership-GET
resource_id: membership
path_template: /members/{member}/invitations
http_method: GET
api_category: membership
implementation_version: 6.2004
api_since: 4.9100
deprecated_since: null
obsolete_since: null
api_support: supported
cache_control: null
generated_at: 2026-09-02
tokens: ~270
---

# /members/\{member\}/invitations \[GET\]

## Description

Get the [invitations](../../reference/glossary/invitation.md) for the [ member](../../reference/glossary/member.md).

Returns the list of groups the given member was invited to.

## Parameters

No parameters required.

## Permission

Only the current member or administrators can invoke this service.

## Response

This service returns a list of [\<membership\> elements](../elements/element_membership.md) with the status set to `invited` and wrapped in an `<invitations>` element.

```xml
<invitations>
  <membership id="[membership id]"
              email-listed="[true|false]"
              notification="[notification]"
              status="invited"
              role="[role]">
    <group|project id="[group id]"
                   name="[name]" ... />
  </membership>
  <membership status="invited" ...> ...
  </membership>
  ...
</invitations>
```

If the user has no invitation, the service returns an empty list:

```xml
<invitations/>
```

## Error Handling

No specific errors expected for this service.

