spo file checkout¶
Checks out specified file
Usage¶
m365 spo file checkout [options]
Options¶
-u, --webUrl <webUrl>
- The URL of the site where the file is located
-f, --fileUrl [fileUrl]
- The server-relative URL of the file to retrieve. Specify either
fileUrl
orid
but not both -i, --id [id]
- The UniqueId (GUID) of the file to retrieve. Specify either
fileUrl
orid
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¶
Checks out file with UniqueId b2307a39-e878-458b-bc90-03bc578531d6 located in site https://contoso.sharepoint.com/sites/project-x
m365 spo file checkout --webUrl https://contoso.sharepoint.com/sites/project-x --id 'b2307a39-e878-458b-bc90-03bc578531d6'
Checks out file with server-relative url /sites/project-x/documents/Test1.docx located in site https://contoso.sharepoint.com/sites/project-x
m365 spo file checkout --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/documents/Test1.docx'