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?
Asked
Active
Viewed 58 times
0

James Z
- 12,209
- 10
- 24
- 44

Rajesh Kannan
- 25
- 3
-
Hi - what have you tried and what specific issues are you facing? Have you set up connections to your source/target and do they error? If so, what’s the error message and how have you configured the connection? – NickW Jun 05 '23 at 14:55
-
Hi NIckW, I dont see any direct connector from ADF to connect with Ms Planner. I dont have any idea about the configuration also. Just came here to get the some suggestion. Please help me if you have come across. – Rajesh Kannan Jun 06 '23 at 05:39
1 Answers
0
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:
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:
The way I picture it in my head in ADF is:
- Web call to MS Planner
- Write the Output to a variable (optional, but could be good for organization purposes)
- Write the JSON variable to Snowflake (single column)
- Parse JSON (aka Shredding) from Single Column to Individual Columns depending on the JSON structure (arrays, objects, etc)
Cheers!

Trent Tamura
- 1,079
- 6
- 16