Skip to content

spo page column list

Lists columns in the specific section of a modern page

Usage

m365 spo page column list [options]

Options

-u, --webUrl <webUrl>
URL of the site where the page to retrieve is located.
-n, --pageName <pageName>
Name of the page to list columns of.
-s, --section <sectionId>
ID of the section for which to list columns.
-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 is full.
--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
Output type. json,text,csv,md. Default json
--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

List columns in the first section of a modern page

m365 spo page column list --webUrl https://contoso.sharepoint.com/sites/team-a --pageName home.aspx --section 1

Response

[
  {
    "factor": 12,
    "order": 1,
    "dataVersion": "1.0",
    "jsonData": "&#123;&quot;displayMode&quot;&#58;2,&quot;position&quot;&#58;&#123;&quot;sectionFactor&quot;&#58;12,&quot;sectionIndex&quot;&#58;1,&quot;zoneIndex&quot;&#58;1&#125;&#125;",
    "controls": 1
  }
]
controls: 1
factor  : 12
order   : 1
factor,order,controls
12,1,1
# spo page column list --webUrl "https://contoso.sharepoint.com/sites/team-a" --pageName "home.aspx" --section "1"

Date: 5/1/2023

Property | Value
---------|-------
factor | 6
order | 1
dataVersion | 1.0
jsonData | &#123;&quot;displayMode&quot;&#58;2,&quot;position&quot;&#58;&#123;&quot;sectionFactor&quot;&#58;6,&quot;sectionIndex&quot;&#58;1,&quot;zoneIndex&quot;&#58;1&#125;&#125;
controls | 1