site: getApplicableContentTypesForList
Namespace: microsoft.graph
Get site contentTypes that can be added to a list.
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | Sites.Read.All | Sites.FullControl.All, Sites.Manage.All, Sites.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Sites.Read.All | Sites.FullControl.All, Sites.Manage.All, Sites.ReadWrite.All |
HTTP request
GET /sites/{siteId}/getApplicableContentTypesForList
Function parameters
In the request URL, provide the following query parameters with values. The following table shows the parameters that can be used with this function.
Parameter | Type | Description |
---|---|---|
listId | String | GUID of the list for which the applicable content types need to be fetched. Required. |
Optional query parameters
This method supports some of the OData query parameters to help customize the response. For general information, see OData query parameters.
To list only custom content types, use $filter=isBuiltin eq false
.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this function returns a 200 OK
response code and a contentType collection in the response body.
Example
Request
GET https://graph.microsoft.com/v1.0/sites/{siteId}/getApplicableContentTypesForList(listId='{list-id}')
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"value": [
{
"id":"0x",
"description":"",
"group":"_Hidden",
"hidden":false,
"name":"System",
"base": {
"name": "System",
"id": "0x"
}
},
{
"id":"0x00A7470EADF4194E2E9ED1031B61DA0884",
"name": "docSet",
"description": "custom docset",
"hidden":false,
"base": {
"name": "Document Set",
"id": "0x0120D520"
},
"group": "Custom Content Types"
}
]
}