spo list view get¶
Gets information about specific list view
Usage¶
m365 spo list view get [options]
Options¶
-u, --webUrl <webUrl>
- URL of the site where the list is located
--listId [listId]
- ID of the list where the view is located. Specify only one of
listTitle
,listId
orlistUrl
--listTitle [listTitle]
- Title of the list where the view is located. Specify only one of
listTitle
,listId
orlistUrl
--listUrl [listUrl]
- Server- or web-relative URL of the list where the view is located. Specify only one of
listTitle
,listId
orlistUrl
--viewId [viewId]
- ID of the view to get. Specify
viewTitle
orviewId
but not both --viewTitle [viewTitle]
- Title of the view to get. Specify
viewTitle
orviewId
but not both -h, --help
- output usage information
--query [query]
- JMESPath query string. See http://jmespath.org/ for more information and examples
-o, --output [output]
- Output type.
json,text
. Defaulttext
--verbose
- Runs command with verbose logging
--debug
- Runs command with debug logging
Examples¶
Gets a list view by name from a list located in site https://contoso.sharepoint.com/sites/project-x
m365 spo list view get --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle 'My List' --viewTitle 'All Items'
Gets a list view by ID from a list located in site https://contoso.sharepoint.com/sites/project-x
m365 spo list view get --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl 'Lists/My List' --viewId 330f29c5-5c4c-465f-9f4b-7903020ae1ce
Gets a list view by name from a list located in site https://contoso.sharepoint.com/sites/project-x. Retrieve the list by its ID
m365 spo list view get --webUrl https://contoso.sharepoint.com/sites/project-x --listId 330f29c5-5c4c-465f-9f4b-7903020ae1c1 --viewTitle 'All Items'