Enumerate lists in a site
Get the collection of lists for a site.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Sites.Read.All, Sites.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Sites.Read.All, Sites.ReadWrite.All |
HTTP request
GET /sites/{site-id}/lists
Example
Request
GET /sites/{site-id}/lists
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"value": [
{
"id": "b57af081-936c-4803-a120-d94887b03864",
"name": "Documents",
"createdDateTime": "2016-08-30T08:32:00Z",
"lastModifiedDateTime": "2016-08-30T08:32:00Z",
"list": {
"hidden": false,
"template": "documentLibrary"
}
},
{
"id": "1234-112-112-4",
"name": "MicroFeed",
"createdDateTime": "2016-08-30T08:32:00Z",
"lastModifiedDateTime": "2016-08-30T08:32:00Z",
"list": {
"hidden": false,
"template": "genericList"
}
}
]
}
Remarks
Lists with the system facet are hidden by default.
To list them, include system
in your $select
statement.