Create an Azure Blob base connection using the Flow Service API
A base connection represents the authenticated connection between a source and Adobe Experience Platform.
This tutorial provides steps to create a base connection for Azure Blob (hereinafter referred to as “Blob”) using the Flow Service API.
Getting started
This guide requires a working understanding of the following components of Adobe Experience Platform:
- Sources: Experience Platform allows data to be ingested from various sources while providing you with the ability to structure, label, and enhance incoming data using Platform services.
- Sandboxes: Experience Platform provides virtual sandboxes which partition a single Platform instance into separate virtual environments to help develop and evolve digital experience applications.
The following sections provide additional information that you will need to know in order to successfully create a Blob source connection using the Flow Service API.
Gather required credentials
In order for Flow Service to connect with your Blob storage, you must provide values for the following connection property:
table 0-row-2 1-row-2 2-row-2 | |
---|---|
Credential | Description |
connectionString |
A string that contains the authorization information necessary to authenticate Blob to Experience Platform. The Blob connection string pattern is: DefaultEndpointsProtocol=https;AccountName={ACCOUNT_NAME};AccountKey={ACCOUNT_KEY} . For more information about connection strings, see this Blob document on configuring connection strings. |
connectionSpec.id |
The connection specification returns a source’s connector properties, including authentication specifications related to creating the base and source connections. The connection specification ID for Blob is: d771e9c1-4f26-40dc-8617-ce58c4b53702 . |
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 | |
---|---|
Credential | Description |
sasUri |
The shared access signature URI that you can use as an alternative authentication type to connect your Blob account. The Blob SAS URI pattern is: https://{ACCOUNT_NAME}.blob.core.windows.net/?sv=<storage version>&st={START_TIME}&se={EXPIRE_TIME}&sr={RESOURCE}&sp={PERMISSIONS}>&sip=<{IP_RANGE}>&spr={PROTOCOL}&sig={SIGNATURE}> For more information, see this Blob document on shared access signature URIs. |
container |
The name of the container that you want to designate access to. When creating a new account with the Blob source, you can provide a container name to specify user access to the sub folder of your choice. |
folderPath |
The path to the folder that you want to provide access to. |
connectionSpec.id |
The connection specification returns a source’s connector properties, including authentication specifications related to creating the base and source connections. The connection specification ID for Blob is: d771e9c1-4f26-40dc-8617-ce58c4b53702 . |
Using Platform APIs
For information on how to successfully make calls to Platform APIs, see the guide on getting started with Platform APIs.
Create a base connection
A base connection retains information between your source and Platform, including your source’s authentication credentials, the current state of the connection, and your unique base connection ID. The base connection ID allows you to explore and navigate files from within your source and identify the specific items that you want to ingest, including information regarding their data types and formats.
The Blob source supports both connection string and shared access signature (SAS) authentication. A shared access signature (SAS) URI allows for secure delegated authorization to your Blob account. You can use SAS to create authentication credentials with varying degrees of access, as a SAS-based authentication allows you to set permissions, start and expiry dates, as well as provisions to specific resources.
During this step, you can also designate the sub folders that your account will have access to by defining the name of the container and the path to the sub folder.
To create a base connection ID, make a POST request to the /connections
endpoint while providing your Blob authentication credentials as part of the request parameters.
API format
POST /connections
Request
The following request creates a base connection for Blob using connection string-based authentication:
accordion | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Request | ||||||||||
|
accordion | ||
---|---|---|
Response | ||
A successful response returns details of the newly created base connection, including its unique identifier (
|
To create a Blob connection using shared access signature URI, make a POST request to the Flow Service API while providing values for your Blob sasUri
.
accordion | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Request | ||||||||||
|
accordion | ||
---|---|---|
Response | ||
A successful response returns details of the newly created base connection, including its unique identifier (
|
Next steps
By following this tutorial, you have created a Blob connection using APIs and a unique ID was obtained as part of the response body. You can use this connection ID to explore cloud storages using the Flow Service API.