Skip to main content

spo listitem attachment list

Gets the attachments associated to a list item

Usage

m365 spo listitem attachment list [options]

Options

-u, --webUrl <webUrl>

URL of the site from which the item should be retrieved.

--listId [listId]

ID of the list where the item should be retrieved. Specify either listTitle, listId or listUrl.

--listTitle [listTitle]

Title of the list where the item should be retrieved. Specify either listTitle, listId or listUrl.

--listUrl [listUrl]

Server- or site-relative URL of the list. Specify either listTitle, listId or listUrl.

--listItemId <listItemId>

ID of the list item.

-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 is options.

--query [query]

JMESPath query string. See http://jmespath.org/ for more information and examples.

-o, --output [output]

Output type. json, text, csv, md, none. Default json.

--verbose

Runs command with verbose logging.

--debug

Runs command with debug logging.

Examples

Gets the attachments from list item with the specified listItemId in list with the specified title in the specified site.

m365 spo listitem attachment list --webUrl https://contoso.sharepoint.com/sites/project-x --listTitle "Demo List" --listItemId 147

Gets the attachments from list item with the specified listItemId in list with the specified id in the specified site.

m365 spo listitem attachment list --webUrl https://contoso.sharepoint.com/sites/project-x --listId 0cd891ef-afce-4e55-b836-fce03286cccf --listItemId 147

Gets the attachments from a specific list item in a specific list obtained by server-relative URL in a specific site.

m365 spo listitem attachment list --webUrl https://contoso.sharepoint.com/sites/project-x --listUrl /sites/project-x/Documents --listItemId 147

Response

[
{
"FileName": "DummyDocument.docx",
"FileNameAsPath": {
"DecodedUrl": "DummyDocument.docx"
},
"ServerRelativePath": {
"DecodedUrl": "/Lists/Test/Attachments/236/DummyDocument.docx"
},
"ServerRelativeUrl": "/Lists/Test/Attachments/236/DummyDocument.docx"
}
]
CTRL + M