sitePage: getWebPartsByPosition
Namespace: microsoft.graph
Get a collection of webPart by providing webPartPosition information.
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.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Sites.Read.All | Sites.ReadWrite.All |
HTTP request
GET /sites/{site-id}/pages/{page-id}/microsoft.graph.sitepage/getWebPartsByPosition
Function parameters
In the request URL, provide one or more following parameters with a valid value.
Parameter | Type | Description |
---|---|---|
columnId | Double | Indicates the identifier of the column where the WebPart located. Only works if horizontalSectionId is provided. |
horizontalSectionId | Double | Indicates the horizontal section where the WebPart located. |
isInVerticalSection | Boolean | Indicate whether the WebPart is contained in the current vertical section. |
webPartIndex | Double | The index of the current WebPart. Represents the order of WebPart in the current column or section. Only works if either columnId or isInVerticalSection is provided. |
Optional query parameters
This method supports the $expand
, $filter
, and $select
OData query parameters to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Content-Type | application/json. Required. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of webPart objects in the response body.
Examples
Request
The following is an example of a request.
GET https://graph.microsoft.com/v1.0/sites/7f50f45e-714a-4264-9c59-3bf43ea4db8f/pages/df69e386-6c58-4df2-afc0-ab6327d5b202/microsoft.graph.sitePage/getWebPartsByPosition?isInVerticalSection=true
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"@odata.type": "#microsoft.graph.textWebPart",
"id": "d79d70af-27ea-4208-8dce-23c3bf678664",
"innerHtml": "<h2>How do you get started?</h2>"
}
]
}