Skip to content
For LLMsView as Markdown·

Azure Blob Storage

Manage containers and blobs in Azure Blob Storage.

DetailValue
CategoryCloud & Infra
Base URLhttps://{account_name}.blob.core.windows.net
AuthenticationAPI Key
Endpoints8
Connector keyazure-blob

Using Azure Blob Storage in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Azure Blob Storage from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
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 is documented in full below. Use the outline on the right to jump to one.

GET /

List containers

DetailValue
Operation IDcloud.listContainers
MethodGET
Path/

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.listContainers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

PUT /{container}

Create a container

DetailValue
Operation IDcloud.createContainer
MethodPUT
Path/{container}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.createContainer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

DELETE /{container}

Delete a container

DetailValue
Operation IDcloud.deleteContainer
MethodDELETE
Path/{container}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.deleteContainer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

GET /{container}

List blobs in a container

DetailValue
Operation IDcloud.listBlobs
MethodGET
Path/{container}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.listBlobs.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

GET /{container}/{blob}

Download a blob

DetailValue
Operation IDcloud.getBlob
MethodGET
Path/{container}/{blob}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.getBlob.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

PUT /{container}/{blob}

Upload a blob

DetailValue
Operation IDcloud.putBlob
MethodPUT
Path/{container}/{blob}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.putBlob.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

DELETE /{container}/{blob}

Delete a blob

DetailValue
Operation IDcloud.deleteBlob
MethodDELETE
Path/{container}/{blob}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.deleteBlob.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.

HEAD /{container}/{blob}

Get blob properties

DetailValue
Operation IDcloud.getBlobProperties
MethodHEAD
Path/{container}/{blob}

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Azure Blob Storage connection from the Connection dropdown.
  3. In the Operation dropdown, select cloud.getBlobProperties.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Azure Blob Storage API reference.