List all blobs in a container.
External DocumentationTo learn more, visit the Azure Storage documentation.

Basic Parameters

ParameterDescription
Container NameThe name of the container. Can be obtained from the List Containers action.
LimitThe amount of the results to be returned.
PrefixFilter by a given prefix.

Advanced Parameters

ParameterDescription
Disable XML To JSON Auto ConvertWhen checked, XML responses are not automatically converted into JSON format.
MarkerPaginate by the returning NextMarker pagination token.

Example Output

{
	"EnumerationResults": {
		"-ContainerName": "<string>",
		"Blobs": {
			"Blob": [
				{
					"Name": "<string>",
					"Properties": {
						"LeaseState": "<string>",
						"Last-Modified": "<string>",
						"Content-Encoding": "<string>",
						"Content-MD5": "<string>",
						"AccessTierInferred": "<string>",
						"Content-Type": "<string>",
						"BlobType": "<string>",
						"AccessTier": "<string>",
						"LeaseStatus": "<string>",
						"Etag": "<string>",
						"Content-Language": "<string>",
						"Content-CRC64": "<string>",
						"Cache-Control": "<string>",
						"Creation-Time": "<string>",
						"Content-Length": "<string>",
						"Content-Disposition": "<string>",
						"ServerEncrypted": "<string>"
					},
					"OrMetadata": "<string>"
				},
				{
					"Name": "<string>",
					"Properties": {
						"AccessTier": "<string>",
						"ServerEncrypted": "<string>",
						"Last-Modified": "<string>",
						"Etag": "<string>",
						"Content-Length": "<string>",
						"Content-Encoding": "<string>",
						"Content-CRC64": "<string>",
						"Content-Disposition": "<string>",
						"BlobType": "<string>",
						"LeaseStatus": "<string>",
						"Content-Type": "<string>",
						"Cache-Control": "<string>",
						"AccessTierInferred": "<string>",
						"Creation-Time": "<string>",
						"Content-Language": "<string>",
						"Content-MD5": "<string>",
						"LeaseState": "<string>"
					},
					"OrMetadata": "<string>"
				}
			]
		},
		"NextMarker": "<string>",
		"-ServiceEndpoint": "<string>"
	}
}

Workflow Library Example

List Blobs with Azure Storage and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop