I would like to extract data from Ms Planner and load it into snowflake. I am using ADF as integration tool. How to achieve this?
How to extract data from MS Planner to Snowflake using Azure Data Factory
141 Views Asked by Rajesh Kannan At
1
There are 1 best solutions below
Related Questions in AZURE-DATA-FACTORY
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Accessing REST API Status Codes using Azure Data Factory Copy Activity (or similar)?
- Use an activity output as the step name to get additional info in ADF
- Exit loop condition when running the synpase notebooks based on metadata dependencies
- Azure Data Factory Copy Activity Only Importing First Row of XML file
- ADF Copy Activity from Source Azure Synapse Analytics Target ADLSGen2 Storage account
- Parmeter values not resolving in ADF
- How to copy XML files in a folder F1 based on whether its content is present on folder F2 (disregarding file names)
- Can I move an Azure Data Factory Pipeline to Azure DevOps?
- tsql functions like REPLACE() failing in azure data factory pipeline connected to salesforce
- Get the URL from C# script used in ssis
- Reading Unstructured Text from the entire file in Azure Data Factory
- Unable to PUT JSON using ADF Dataflow, the error is "the JSON value could not be converted to System.Collections.Generic.List"
- Manipulating Json in Azure Data Factory activities
- Couchbase Connector in ADF
Related Questions in MICROSOFT-PLANNER
- Get Team's Planner using App Only permission in Azure Function
- Recurring task for Microsoft Planner using Power Automate
- Line breaks in Microsoft planner description field - a bug or a feature?
- How to automatically grabbing the tasks from planner into Metrics/goal?
- Microsoft Planner is showing unknown user commented when using API to create task
- Custom teams app with Azure authenticaton doesn't work in Teams desktop app while working in the browser
- How to resolve ElementClickInterceptedException when element is obscured in Firefox, Selenium and Python?
- Unable to add Teams/SharePoint file attachment in a task to ' Tasks by Planner and To Do '
- Change Plan's Owner/Group - Required Permissions missing
- Microsoft Graph REST API to UPDATE Microsoft Planner Tasks?
- Update Patch Microsoft Graph API Planner Task Detail using JSON cURL through FileMaker Pro produces error 204
- How to add a Planner plan tab in Microsoft Teams channel using PowerShell and Graph API
- Microsoft Graph API Planner Task Detail with hyperlinks
- I have a planner tab on MS teams but I cant figure how to add the chat bot for it
- patch request to microsoft graph api for planner task does not return the updated task in the response
Related Questions in MICROSOFT-GRAPH-PLANNERTASKS
- How to get Planner Task assignee using Microsoft Graph in Powershell?
- Creating plan via MS Graph API returns empty ODataError
- Which API permission is needed for listing plans in a Microsoft group?
- Deleting task from planner
- Can i show a Planner link inside SharePoint team site home page using Graph API
- create planner plans and add them as teams tabs using Graph API is raising this error "Invalid bind property name teamsApp in request."
- Can we automate the creation of planner plans inside existing Teams channels using power automate flows
- Required permissions to get the planner data using MS graph sdk?
- Geting the last modified date and time of a microsoft planner task using APIs
- I am extracting data from planner with power automate, however, the send an HTTP request is not pulling all tasks
- How to extract data from MS Planner to Snowflake using Azure Data Factory
- Getting "attemted changes conflicted with already accepted changes" error in Microsoft Graph Planner API
- MS Graph API ... create Planner task including details/description using one single HTTP request?
- Microsoft graph api planner task bulk insertion
- Microsoft Graph Planner API missing recurring tasks in response
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would personally use a REST API call (Web Activity in ADF) to MS Planner. Here is a link to a GET command for Plans, and there are many other commands you can navigate to from this link:
MS Planner API
Once you do an API call, you will get a JSON Output. You should be able to load this JSON to Snowflake and then shred it using various methods detailed in this link:
JSON Handling in Snowflake
The way I picture it in my head in ADF is:
Cheers!