Azure Blob Storage ​
Manage containers and blobs in Azure Blob Storage.
| Detail | Value |
|---|---|
| Category | Cloud & Infra |
| Base URL | https://{account_name}.blob.core.windows.net |
| Authentication | API Key |
| Endpoints | 8 |
| Connector key | azure-blob |
Using Azure Blob Storage in a workflow ​
- Go to Connections and click New Connection.
- Pick Azure Blob Storage from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET / | List containers |
| PUT /{container} | Create a container |
| DELETE /{container} | Delete a container |
| GET /{container} | List blobs in a container |
| GET /{container}/{blob} | Download a blob |
| PUT /{container}/{blob} | Upload a blob |
| DELETE /{container}/{blob} | Delete a blob |
| HEAD /{container}/{blob} | Get blob properties |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.