Error: DataSource.Error : Web.Contents avec l'option Content est pris en charge uniquement lors de la connexion anonyme

Hi friends, I try to update the api.monday.com/v2 with my Power Bi but after put well the Query appears this error: DataSource.Error : Web.Contents avec l’option Content est pris en charge uniquement lors de la connexion anonyme.
Détails :
DataSourceKind=Web
DataSourcePath=https://api.monday.com/v2
I try to fix but, every time that I make the corrections, continues the same mistake, Can somebody help me with this. Thanks. Here the first part of the Query: Thanks :slight_smile: : let
Key = “Personal Key”,
Board = “Number”,
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 } } } }””}”)
]

Hello there @JorgeTORRES,

I do not have experience with Power BI but the query you are using (boards->items) is a deprecated one. You need to use “items_page” as shown here :smile:

Not sure if this is related to the error you see, but I wanted to flag it just in case!

Cheers,
Matias