spo page column get¶
Get information about a specific column of a modern page
Usage¶
m365 spo page column get [options]
Options¶
-u, --webUrl <webUrl>
- URL of the site where the page to retrieve is located.
-n, --pageName <pageName>
- Name of the page to get column information of.
-s, --section <section>
- ID of the section where the column is located.
-c, --column <column>
- ID of the column for which to retrieve more information.
-h, --help [help]
- Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isfull
. --query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text,csv,md
. Defaultjson
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Remarks¶
If the specified pageName
doesn't refer to an existing modern page, you will get a File doesn't exists error.
Examples¶
Get information about the first column in the first section of a modern page
m365 spo page column get --webUrl https://contoso.sharepoint.com/sites/team-a --pageName home.aspx --section 1 --column 1
Response¶
{
"factor": 12,
"order": 1,
"dataVersion": "1.0",
"jsonData": "{"displayMode":2,"position":{"sectionFactor":12,"sectionIndex":1,"zoneIndex":1}}",
"controls": [
{
"controlType": 3,
"dataVersion": "1.0",
"order": 1,
"id": "7558d804-0334-49ca-b14a-53870cf6caae",
"controlData": {
"controlType": 3,
"displayMode": 2,
"id": "7558d804-0334-49ca-b14a-53870cf6caae",
"position": {
"controlIndex": 1,
"sectionIndex": 1,
"zoneIndex": 1,
"sectionFactor": 12,
"layoutIndex": 1
},
"webPartId": "e377ea37-9047-43b9-8cdb-a761be2f8e09",
"emphasis": {}
},
"title": "Bing Maps",
"description": "Display a location on a map using Bing Maps.",
"propertieJson": {
"pushPins": [],
"maxNumberOfPushPins": 1,
"shouldShowPushPinTitle": true,
"zoomLevel": 12,
"mapType": "road"
},
"webPartId": "e377ea37-9047-43b9-8cdb-a761be2f8e09",
"htmlProperties": "",
"serverProcessedContent": null,
"canvasDataVersion": "1.0"
}
]
}
controls: 7558d804-0334-49ca-b14a-53870cf6caae (Bing Maps)
factor : 12
order : 1
factor,order,controls
12,1,7558d804-0334-49ca-b14a-53870cf6caae (Bing Maps)