---
title: "Service: /members/{member}/projects/{group}/subprojects [GET] (obsolete)"
source: https://dev.pageseeder.com/reference/version_5/services/list-subprojects-deprecated-GET.html
description: "List the sub-projects the member is registered to - DEPRECATED use list-subprojecttree"
last_updated: 2026-09-08T14:02:58+10:00
tokens: ~616
---

# /members/\{member\}/projects/\{group\}/subprojects \[GET\]

| Property | Value |
| --- | --- |
| Path: | /members/{member}/projects/{group}/subprojects |
| Method: | GET |
| Generator: | obsolete |
| Version: |  |
| Since: |  |
| Deprecated: | 5.7900 |
| Obsolete: | 6.0000 |
| Cache control: |  |
| API Support: | OBSOLETE |
| Generated: | 2022-07-01 |

## Description

List the sub-projects the member is registered to

> **Deprecated:** This service is deprecated. Use [Service: /members/\{member\}/projects/\{group\}/subprojecttree \[GET\]](/api/services/list-subprojecttree_get.md) instead.

Returns the list of projects and groups for the given member.

This service returns the list of groups and projects in hierarchical form so that sub-projects and groups appear nested correctly within the specified project.

Note that the admin group is not included.

## Parameters

| Name | Description | Required | Type | Default |
| --- | --- | --- | --- | --- |
| archived | Whether to return archived projects/groups only | no | boolean | `false` |
| for | if 'server' return all projects/groups for server (Administrator only) `[member\|server]` | no | enum | `member` |
| groups | Whether to return groups | no | boolean | `true` |
| nameprefix | Prefix that project/group’s full name must have to be returned | no | string |  |
| relationship | If 'children' return project’s children or top level projects, otherwise return all descendants `[children\|descendants]` | no | enum | `descendants` |
| resultsize | The max number of results in the entire tree | no | integer | `1000` |

## Permission

## Response

The returned XML is as follows with `<project>` at the top if a context project is specified:

```xml

<project id="[id]" name="[name]" owner="[owner]" description="[description]" ...>
  <!-- sub projects -->
  <project id="[id]" name="[name]" description="[description]" owner="[owner]"  ...>
    <group id="[id]" name="[name]" description="[description]" owner="[owner]" ...>
    <group id="[id]" name="[name]" description="[description]" owner="[owner]" ...>
    <group id="[id]" name="[name]" description="[description]" owner="[owner]" ...>
     ...
  </project>
  ...
  <!-- groups -->
  <group id="[id]" name="[name]" description="[description]" owner="[owner]" ...>
  <group id="[id]" name="[name]" description="[description]" owner="[owner]" ...>
   ...
</project> 
```

## Error Handling

No specific errors expected for this service.

