Share via

I have to copy data from share point (Unstructured Data Photo/Video)to Azure blob storage using ADF pipeline

Prashant Vidhate 0 Reputation points
2026-03-11T20:25:46.23+00:00

Can anyone tell me which activities I have to use as well which access I have required on share point level as well On Entra ID

As well which linked service I have to use

Azure Data Factory
Azure Data Factory

An Azure service for ingesting, preparing, and transforming data at scale.

{count} votes

1 answer

Sort by: Most helpful
  1. Alex Burlachenko 19,465 Reputation points Volunteer Moderator
    2026-03-12T12:56:15.1666667+00:00

    Prashant Vidhate hello,

    to move photos and videos from SharePoint to Azure Blob using ADF u just need a normal Copy activity. On the source side use the SharePoint Online linked service, usually with OAuth2 using an app registration in Entra ID. On the sink side use an Azure Blob Storage linked service.

    For permissions create an app registration in Entra ID and grant it Microsoft Graph or SharePoint API permissions like Sites.Read.All or Sites.ReadWrite.All depending on what u need, then grant admin consent. In SharePoint itself the app must have access to the specific site or document library where the files live.

    In ADF create a SharePoint Online dataset pointing to the document library or folder, and a Blob dataset pointing to the container. Then configure the Copy activity from SharePoint dataset to Blob dataset.

    So basically u need one Copy activity, a SharePoint Online linked service with an Entra app registration, and a Blob Storage linked service with either key, SAS or managed identity depending on ur setup.

    rgds,

    Alex


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.