---
title: "Service: /members/{member}/groups/{group}/loadingzone/tree [GET]"
source: https://dev.pageseeder.com/api/services/get-loading-zone-tree_get.html
description: "Retrieves a hierarchical tree representation of a member's loading zone with folders and files. Supports filtering by upload ID or XLink ID, with limits on file display for performance."
last_updated: 2026-09-08T11:51:46+10:00
document_type: api_endpoint
operation_id: load-GET
resource_id: load
path_template: /members/{member}/groups/{group}/loadingzone/tree
http_method: GET
api_category: load
implementation_version: 6.2004
api_since: 5.9500
deprecated_since: null
obsolete_since: null
api_support: supported
cache_control: null
generated_at: 2026-09-02
tokens: ~346
---

# /members/\{member\}/groups/\{group\}/loadingzone/tree \[GET\]

## Description

Returns a hierarchical representation of the [loading zone](../../reference/glossary/loading_zone.md).

## Parameters

| Name | Description | Required | Type | Default |
| --- | --- | --- | --- | --- |
| uploadid | The loading zone’s upload ID | no | string |  |
| xlinkid | An XLink ID used to build an upload ID (used for comment attachments loading zone) | no | string |  |

## Permission

## Response

If there are more than 1000 files, only folders are returned. If there are more than 100 files in a folder, only the first 100 are returned and the count is added.

```xml

<loadingzone member="[memberid]" 
            [uploadid="[uploadid]"] 
            total-files="[total]">
  <file name="[filename]" 
        path="[path]" 
        type="folder" 
        [files="[count]"]>
    <file name="[filename]" path="[path]" type="file" ... />
    <file name="[filename]" path="[path]" type="file" ... />
    ...
    <file name="[filename]" 
          path="[path]" 
          type="folder" 
          [files="[count]"]>
      <file name="[filename]"
            path="[path]"
            type="file" ... />
      ...
      </file>
    </file>
    <file name="[filename]" path="[path]" type="file" ... />
    ...
</loadingzone>
```

## Error Handling

No specific errors expected for this service.

