---
title: "Service: /members/{member}/groups/{group}/loadingzone [GET]"
source: https://dev.pageseeder.com/api/services/get-loading-zone-GET.html
description: "Get loading zone"
last_updated: 2026-08-07T17:09:54+10:00
document_type: api_endpoint
operation_id: load-GET
resource_id: load
path_template: /members/{member}/groups/{group}/loadingzone
http_method: GET
api_category: load
implementation_version: null
api_since: 5.9500
deprecated_since: null
obsolete_since: null
api_support: supported
cache_control: null
generated_at: 2026-08-07
tokens: ~438
---

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

## Description

Returns a flat (non hierarchical) representation of the [loading zone](../../reference/glossary/loading_zone.md). Does not include META-INF files.

The content of files in the loading zone can be accessed using [Service: /upload/get \[GET\]](loading-zone-GET.md).

## Parameters

| Name | Description | Required | Type | Default value |
| --- | --- | --- | --- | --- |
| 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 |  |
| media | Whether to return media types and zip files only | no | boolean | `false` |

## Permission

## Response

If there are not more than 20 files, then all files only are returned:

```lang-xml

<loadingzone member="[memberid]" 
             [uploadid="[uploadid]"] 
             max-workflow-notifications="20">
  <file name="[filename]" 
        path="[path]" 
        type="file" ... />
  <file name="[filename]" 
        path="[path]" 
        type="file" ... />
  ...
</loadingzone>
 
```

If there are more than 20 files or `media="true"`, then zip files and media types only are included:

```lang-xml

<loadingzone member="[memberid]"
             [uploadid="[uploadid]"] 
             max-workflow-notifications="20">
  <file name="[filename]" 
        path="[path.zip]" 
        type="file" ... />
  <mediatype value="[media type]" 
             files="[nb of files]">
    <file name="[filename]" 
          path="[path]" 
          type="file" ... />
    <!-- The first file is included as an example -->
  </mediatype>
  ...
</loadingzone>
 
```

## Error Handling

No specific errors expected for this service.

