Skip to main content

List Containers

List containers in the storage account.

External Documentation

To learn more, visit the Azure Storage documentation.

Basic Parameters

ParameterDescription
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": {
"Prefix": "string-value",
"Marker": "string-value",
"MaxResults": "int-value",
"Containers": {
"Container": {
"Name": "container-name",
"Version": "container-version",
"Deleted": "true",
"Properties": {
"Last-Modified": "date/time-value",
"Etag": "etag",
"LeaseStatus": "locked | unlocked",
"LeaseState": "available | leased | expired | breaking | broken",
"LeaseDuration": "infinite | fixed",
"PublicAccess": "container | blob",
"HasImmutabilityPolicy": "true | false",
"HasLegalHold": "true | false",
"DeletedTime": "datetime",
"RemainingRetentionDays": "no-of-days"
},
"Metadata": {
"metadata-name": "value"
}
}
},
"NextMarker": "marker-value",
"_ServiceEndpoint": "https://myaccount.blob.core.windows.net"
}
}

Workflow Library Example

List Containers with Azure Storage and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop