spo listitem attachment add
Adds an attachment to a list item
Usage
m365 spo listitem attachment add [options]
Options
-u, --webUrl <webUrl>
URL of the site where the list item is located.
--listId [listId]
ID of the list. Specify either
listTitle
,listId
orlistUrl
.--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
.--listItemId <listItemId>
The ID of the list item.
-p, --filePath <filePath>
Local path to the file that will be added as an attachment to the list item.
-n, --fileName [fileName]
Name for the file. If no name is provided, the name from
filePath
will be utilized.
-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 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
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Add a new attachment to a list item from a local file by using list title
m365 spo listitem attachment add --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "DemoList" --listItemId 147 --filePath "C:/Reports/File1.jpg"
Add a new attachment to a list item from a local file by using list URL with a different filename
m365 spo listitem attachment add --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl "/sites/project-x/Lists/DemoList" --listItemId 147 --filePath "C:/Reports/File1.jpg" --fileName "File2"
Response
- JSON
- Text
- CSV
- Markdown
[
{
"FileName": "File1.jpg",
"FileNameAsPath": {
"DecodedUrl": "File1.jpg"
},
"ServerRelativePath": {
"DecodedUrl": "/Lists/DemoList/Attachments/147/File1.jpg"
},
"ServerRelativeUrl": "/Lists/Test/Attachments/147/File1.jpg"
}
]
FileName : File1.jpg
FileNameAsPath : {"DecodedUrl":"File1jpg"}
ServerRelativePath: {"DecodedUrl":"/Lists/DemoList/Attachments/743/File1.jpg"}
ServerRelativeUrl : /Lists/DemoList/Attachments/147/File1.jpg
FileName,ServerRelativeUrl
File1.jpg,/Lists/DemoList/Attachments/147/File1.jpg
# spo listitem attachment add --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "DemoList" --listItemId 147 --filePath "C:/Reports/File1.jpg"
Date: 25/07/2023
Property | Value
---------|-------
FileName | File1.jpg
ServerRelativeUrl | /Lists/DemoList/Attachments/147/File1.jpg