spo file checkin
Checks in specified file
Usage
m365 spo file checkin [options]
Options
-u, --webUrl <webUrl>The URL of the site where the file is located.
--url [url]The server- or site-relative decoded URL of the file to retrieve. Specify either
urloridbut not both.-i, --id [id]The UniqueId (GUID) of the file to retrieve. Specify either
urloridbut not both.-t, --type [type]Type of the check in. Allowed values:
Minor,Major,Overwrite. Defaults toMajor.--comment [comment]Comment to set when checking the file in. It's length must be less than 1024 letters. Default is empty string.
-h, --help [help]Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options,examples,remarks,permissions,response,full. Default isoptions.--query [query]JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]Output type.
json,text,csv,md,none. Defaultjson.--verboseRuns command with verbose logging.
--debugRuns command with debug logging.
Examples
Checks in file with the specified UniqueId located in the specified site.
m365 spo file checkin --webUrl https://contoso.sharepoint.com/sites/project-x --id 'b2307a39-e878-458b-bc90-03bc578531d6'
Checks in file with the specified server-relative url located in the specified site.
m365 spo file checkin --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/documents/Test1.docx'
Checks in minor version of file with the specified server-relative url located in the specified site.
m365 spo file checkin --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/documents/Test1.docx' --type Minor
Checks in the specified file with comment located in the specified site.
m365 spo file checkin --webUrl https://contoso.sharepoint.com/sites/project-x --url '/sites/project-x/documents/Test1.docx' --comment 'approved'
Response
The command won't return a response on success.