> ## 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.

# List Spaces

View the Spaces available in a Workspace. You can only get member info in private Spaces.

<Note>
  External Documentation

  To learn more, visit the [ClickUp documentation](https://clickup.com/api/clickupreference/operation/GetSpaces/).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                               |
  | --------- | ----------------------------------------- |
  | Team ID   | The ID of the team (Workspace team type). |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description          |
  | --------- | -------------------- |
  | Archived  | Get archived spaces. |
</div>

## Example Output

```json theme={"dark"}
{
	"spaces": [
		{
			"id": "<string>",
			"name": "<string>",
			"color": "<string>",
			"private": false,
			"avatar": null,
			"admin_can_manage": null,
			"statuses": [
				{
					"id": "<string>",
					"status": "<string>",
					"type": "<string>",
					"orderindex": 1,
					"color": "<string>"
				},
				{
					"id": "<string>",
					"status": "<string>",
					"type": "<string>",
					"orderindex": 2,
					"color": "<string>"
				}
			],
			"multiple_assignees": true,
			"features": {
				"due_dates": {
					"enabled": true,
					"start_date": true,
					"remap_due_dates": true,
					"remap_closed_due_date": false
				},
				"sprints": {
					"enabled": true
				},
				"time_tracking": {
					"enabled": true,
					"harvest": false,
					"rollup": false,
					"default_to_billable": 1
				},
				"points": {
					"enabled": false
				},
				"custom_items": {
					"enabled": false
				},
				"priorities": {
					"enabled": true,
					"priorities": [
						{
							"color": "<string>",
							"id": "<string>",
							"orderindex": "<string>",
							"priority": "<string>"
						},
						{
							"color": "<string>",
							"id": "<string>",
							"orderindex": "<string>",
							"priority": "<string>"
						}
					]
				},
				"tags": {
					"enabled": true
				},
				"time_estimates": {
					"enabled": true,
					"rollup": false,
					"per_assignee": false
				},
				"check_unresolved": {
					"enabled": true,
					"subtasks": true,
					"checklists": null,
					"comments": null
				},
				"milestones": {
					"enabled": true
				},
				"custom_fields": {
					"enabled": true
				},
				"remap_dependencies": {
					"enabled": true
				},
				"dependency_warning": {
					"enabled": true
				},
				"status_pies": {
					"enabled": false
				},
				"multiple_assignees": {
					"enabled": true
				},
				"emails": {
					"enabled": true
				},
				"scheduler_enabled": false
			},
			"archived": false
		},
		{
			"id": "<string>",
			"name": "<string>",
			"color": "<string>",
			"private": false,
			"avatar": null,
			"admin_can_manage": true,
			"statuses": [
				{
					"id": "<string>",
					"status": "<string>",
					"type": "<string>",
					"orderindex": 2,
					"color": "<string>"
				},
				{
					"id": "<string>",
					"status": "<string>",
					"type": "<string>",
					"orderindex": 0,
					"color": "<string>"
				}
			],
			"multiple_assignees": true,
			"features": {
				"due_dates": {
					"enabled": true,
					"start_date": true,
					"remap_due_dates": false,
					"remap_closed_due_date": false
				},
				"sprints": {
					"enabled": false
				},
				"time_tracking": {
					"enabled": true,
					"harvest": false,
					"rollup": false,
					"default_to_billable": 2
				},
				"points": {
					"enabled": false
				},
				"custom_items": {
					"enabled": false
				},
				"priorities": {
					"enabled": true,
					"priorities": [
						{
							"color": "<string>",
							"id": "<string>",
							"orderindex": "<string>",
							"priority": "<string>"
						},
						{
							"color": "<string>",
							"id": "<string>",
							"orderindex": "<string>",
							"priority": "<string>"
						}
					]
				},
				"tags": {
					"enabled": true
				},
				"check_unresolved": {
					"enabled": true,
					"subtasks": null,
					"checklists": null,
					"comments": null
				},
				"milestones": {
					"enabled": false
				},
				"custom_fields": {
					"enabled": true
				},
				"dependency_warning": {
					"enabled": true
				},
				"status_pies": {
					"enabled": false
				},
				"multiple_assignees": {
					"enabled": true
				},
				"emails": {
					"enabled": true
				},
				"scheduler_enabled": false
			},
			"archived": false
		}
	]
}
```

## Workflow Library Example

[List Spaces with Clickup and Send Results Via Email](https://library.blinkops.com/workflows/list-spaces-with-clickup-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/list-spaces-with-clickup-and-send-results-via-email/canvas" />
</div>
