- 
                Notifications
    You must be signed in to change notification settings 
- Fork 367
Open
Description
Usage
m365 spo list defaultvalue get [options]
Description
Gets a specific default column value from a list
Options
| Option | Description | 
|---|---|
| -u, --webUrl <webUrl> | URL of the site where the list is located. | 
| -i, --listId [listId] | ID of the list. Specify either listTitle,listId, orlistUrl. | 
| -t, --listTitle [listTitle] | Title of the list. Specify either listTitle,listId, orlistUrl. | 
| --listUrl [listUrl] | Server- or site-relative URL of the list. Specify either listTitle,listId, orlistUrl. | 
| --fieldName <fieldName> | Internal name of the field. | 
| --folderUrl [folderUrl] | Remove the value on a specific folder. By default, the root folder of the list is used. | 
Examples
Get a column default value from the root of the list
m365 spo list defaultvalue get --webUrl https://contoso.sharepoint.com/sites/Marketing --listTitle Logos --fieldName CompanyGet a column default value from a specific folder
m365 spo list defaultvalue get --webUrl https://contoso.sharepoint.com/sites/Marketing --listUrl '/Logos' --fieldName Company --folderUrl '/Logos/Branding'Get a column default value from a specific folder by server-relative URL
m365 spo list defaultvalue get --webUrl https://contoso.sharepoint.com/sites/Marketing --listUrl '/sites/Marketing/Logos' --fieldName Company --folderUrl '/sites/Marketing/Logos/Branding'Default properties
No response
Additional Info
Let's throw an error when the value was not found.
Adam-it