You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Azure Blob Plugin is a pre-packaged, plug-and-play integration component for the FlowSynx engine. It enables interacting with Azure Blob Storage to manage containers and blobs, supporting a variety of operations such as uploading, downloading, listing, and purging blob data. Designed for FlowSynx’s no-code/low-code automation workflows, this plugin simplifies cloud storage integration and file management.
This plugin is automatically installed by the FlowSynx engine when selected within the platform. It is not intended for manual installation or standalone developer use outside the FlowSynx environment.
Purpose
The Azure Blob Plugin allows FlowSynx users to:
Upload and download files to and from Azure Blob Storage.
Manage blobs and containers with create, delete, and purge operations.
List contents of containers with filtering and metadata support.
Perform existence checks for files or folders in workflows without writing code.
Supported Operations
create: Creates a new blob in the specified bucket and path.
delete: Deletes an blob at the specified path in the bucket.
exist: Checks if an blob exists at the specified path.
list: Lists blobs under a specified path (prefix), with filtering and optional metadata.
purge: Deletes all blobs under the specified path, optionally forcing deletion.
read: Reads and returns the contents of an blob at the specified path.
write: Writes data to a specified path in the bucket, with support for overwrite.
Plugin Specifications
The plugin requires the following configuration:
AccountName (string): Required. The Azure Storage account name.
AccountKey (string): Required. The access key for the Azure Storage account.
ContainerName (string): Required. The name of the blob container to use.
FlowSynx plugin to integrates with Azure Blob Storage to upload, download, list, and manage blobs in containers. Useful for handling large, unstructured data in workflows.