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

# Create List

Create a new list in a site.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `Sites.Manage.All`.
* Higher privileged Microsoft Graph permissions to access the action via **application**: `Sites.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [SharePoint documentation](https://learn.microsoft.com/en-us/graph/api/list-create?view=graph-rest-1.0\&tabs=http).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter    | Description                                                      |
  | ------------ | ---------------------------------------------------------------- |
  | Display Name | The display name of the list.                                    |
  | Site ID      | The ID of the site. Can be obtained via the `List Sites` action. |
  | Template     | Represents the base list template used in creating the list.     |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Content Types | Indicates that content types are enabled or disabled for this list.<br /><br />A content type defines the structure and properties of an item, including the fields (columns) it contains, the default values, validation rules, workflows, and other settings associated with it.<br /><br />When content types are disabled, it means that the list or document library is not configured to use content types.<br />In this case, only the default item content type is available, and you cannot associate additional content types with the list or library.<br /><br />When content types are enabled, it means that the list or document library is configured to support multiple content types.<br />In this case, you can associate one or more content types with the list/library, allowing you to have different sets of fields and behaviors for different types of items. |
  | Hidden        | If true, indicates that the list is not normally visible in the SharePoint user experience.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "<string>",
	"@odata.etag": "<string>",
	"createdDateTime": "2017-04-30T01:21:00Z",
	"description": "<string>",
	"eTag": "<string>",
	"id": "22e03ef3-6ef4-424d-a1d3-92a337807c30",
	"lastModifiedDateTime": "2016-08-30T08:26:00Z",
	"name": "<string>",
	"webUrl": "<string>",
	"displayName": "<string>",
	"createdBy": {
		"user": {
			"displayName": "Ryan Gregg",
			"email": "<string>"
		}
	},
	"parentReference": {
		"siteId": "<string>"
	},
	"list": {
		"contentTypesEnabled": false,
		"hidden": true,
		"template": "<string>"
	}
}
```

## Workflow Library Example

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