> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Items From Folder

Retrieves a page of items in a folder. These items can be files,
folders, and web links.

To request more information about the folder itself, like its size,
please use the [Get a folder](https://developer.box.com/reference/get-folders-id#get-folder-information) endpoint instead.

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                    |
  | --------- | ---------------------------------------------- |
  | Folder ID | The unique identifier that represent a folder. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                               |
  | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Box API   | The URL, and optional password, for the shared link of this item.<br />This header can be used to access items that have not been explicitly shared with a user.<br />Use the format shared\_link=\[link] or if a password is required then use shared\_link=\[link]\&shared\_link\_password=\[password]. |
  | Direction | The direction to sort results in. This can be either in alphabetical ascending (`ASC`) or descending (`DESC`) order.                                                                                                                                                                                      |
  | Fields    | A comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response.                                                                                                                                                |
  | Limit     | The maximum number of items to return per page.                                                                                                                                                                                                                                                           |
  | Offset    | The offset of the item at which to begin the response.                                                                                                                                                                                                                                                    |
  | Sort      | Defines the second attribute by which items are sorted.                                                                                                                                                                                                                                                   |
</div>

## Example Output

```json theme={"dark"}
{
	"entries": [
		{
			"etag": "1",
			"file_version": {
				"id": "12345",
				"sha1": "134b65991ed521fcfe4724b7d814ab8ded5185dc",
				"type": "file_version"
			},
			"id": "12345",
			"name": "Contract.pdf",
			"sequence_id": "3",
			"sha1": "85136C79CBF9FE36BB9D05D0639C70C265C18D37",
			"type": "file"
		}
	],
	"limit": 1000,
	"offset": 2000,
	"order": [
		{
			"by": "type",
			"direction": "ASC"
		}
	],
	"total_count": 5000
}
```

## Workflow Library Example

[Get Items from Folder with Box and Send Results Via Email](https://library.blinkops.com/workflows/get-items-from-folder-with-box-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-items-from-folder-with-box-and-send-results-via-email/canvas" />
</div>
