Extensibility and Integration
  • 🔌Extensibility and Integration
  • 📦Products
    • Active Directory
      • Microsoft Graph
        • Overview
        • Tutorials
        • How to Guides
          • Create App Registration
          • Limit Permissions to a Specific Mailbox
      • OpenID
        • UPN Transformation
    • Cognitive Services
      • Form Recognizer
        • Overview
        • Tutorials
        • How to Guides
          • Set Up Form Recognizer
      • Anomaly Detector
        • Overview
        • Tutorials
        • How to Guides
    • Database
      • MS SQL Server
        • Overview
        • Tutorial
          • Flow on MS SQL - Basics
          • Flow on MS SQL - Extended
        • How to Guides
          • Query SQL in odd ways
    • ERP
      • Infor M3 Cloud
        • Overview
        • Tutorials
        • How to Guides
      • IFS Cloud
        • Overview
        • Tutorials
        • How to Guides
          • Import Application Configuration Packages
          • Add a new projection to the connector
          • Add a new server to the connector
      • IFS App 10
        • Overview
        • Tutorials
        • How to Guides
          • Import Application Configuration Packages
    • Storage
      • Azure Storage Account
        • Overview
        • Tutorials
        • How to Guides
          • Set Up Azure Storage Account
    • Studio
      • Applications
        • Workflow
          • Overview
          • Tutorials
          • How to Guides
            • Create Global Properties
            • Import Workflows
            • Setting Menu Roles
            • Publishing Workflows
            • Bluetooth Low Energy Quick Start Guide
      • Environment
        • Import Flow Properties
      • Connectors
        • Database
          • IFS Apps 10
            • Overview
            • Tutorials
            • How To Guides
              • Configure IFS Apps 10 Connector
        • Email
          • How to Guides
            • Email Example
        • File System
          • How to Guides
            • File System Example
            • Importing data from flat files (or other sources)
              • Scheduled Flows
        • HTML to PDF
          • How to Guides
            • HTML to PDF Example
        • Table Operation
          • How To Guides
            • Table Operations Example
        • REST Connector
          • How To Guides
            • Import a REST Configuration
            • Authenticate
              • OAUTH2
              • Cookie
          • Known Issues
            • HTTP Method: Delete - with body - not supported
            • HTTP Method: POST- Header parameters are not passed if no Body is sent
          • Tutorial
            • REST Basic training using Flow and Postman
        • OPC UA Client
          • How to Guides
            • Configure OPC UA Client Connector
        • OData Connector
        • OData Connector
    • Portal 2
      • Portlet
        • Basic
          • Data Tree
            • Overview
            • Tutorial
            • How to Guides
        • Visual Planning
          • Scheduler
            • Overview
            • Tutorial
              • Configure Scheduler
            • How to Guides
      • How To Guides
        • Start browser and auto login
    • Clients
      • Mobile Clients
        • Preference file
  • 📚Resources
    • Flow Help
    • Flow Forum
Powered by GitBook
On this page
  • Create Storage Account
  • Create Shared Access Signature
  • Flow REST connector information

Was this helpful?

  1. Products
  2. Storage
  3. Azure Storage Account
  4. How to Guides

Set Up Azure Storage Account

PreviousHow to GuidesNextStudio

Last updated 3 years ago

Was this helpful?

Azure Blob Storage is Microsoft's object storage solution for the cloud. Blob storage is optimized for storing massive amounts of unstructured data. Read more about this service at .

Create Storage Account

  • Navigate to

  • Select "Create a resource"

  • Search for Storage Account

  • Select “Create”

  • Select Subscription, Resource group, Storage account name, Region, Performance, and Redundancy, then click on “Review + create”

  • Once Validation has Passed, click “Create”

Create Shared Access Signature

  1. Once the Storage Account is deployed, Navigate to “Shared access signature”

  2. Allowed services: Select the services needed for your workflow e.g., Blob and Table

  3. Allowed resource types: Service, Container, Object

  4. Allowed permissions: Read, Write, Delete, List, Add, Create

  5. Blob versioning permissions: Enable deletion of versions

  6. Allowed blob index permissions: Read/Write, Filter

Provide a date range, use HTTPS only protocol with Basic (default) routing tier, then click “Generate SAS and connection string”.

Flow REST connector information

Note down the values that are needed to set up Azure Storage REST Connector in Flow Studio.

Endpoints: Blob storage: https://<your-instance-name>.blob.core.windows.net Table storage: https://<your-instance-name>.table.core.windows.net

Shared Access Signature: Copy the SAS token to a text editor and split it like this:

# Shared Access Signature

sv=2020-08-04
ss=bt
srt=sco
sp=rwdlacutfx
se=2021-09-02T17:02:42Z
st=2021-09-01T09:02:42Z
spr=https
sig=XY4fL6Z%2B8G7VEWbnamJ6%2BAIMohyst7i5duYn5Rizu3E%3D

The signature (sig) is URL encoded and needs to be decoded for use in Flow

# URL decoded signature (sig)
XY4fL6Z+8G7VEWbnamJ6+AIMohyst7i5duYn5Rizu3E=

All parameters in the Shared Access Signature should be added to the REST connector configuration in Flow Studio

📦
https://docs.microsoft.com/en-us/azure/storage/blobs/
https://portal.azure.com/