Hi Everyone,
I am having a hard time to connect with Monday.com API using my PBI.
I already have my key and board ID. All i need to do is to ingest all the contents from my board ID. Can someone please help me with this?
This is my Mcode
let
Key = Access_token,
Board = Board_id,
Source = Web.Contents(
“https://api.monday.com/v2”,
[
Headers=[
#“Method”=“POST”,
#“Content-Type”=“application/json”,
#“Authorization”=“Bearer " & Key
],
Content=Text.ToBinary(”{““query””: ““query { boards(ids: " & Board & “) { items { name, updated_at, group { title }, columns: column_values { title, text }} } }””}”)
]
Thank you!