Greetings:
The Graph APIs often allow you to set/get properties not available in a connector. In my case, the Planner API does not allow me to update a task priority whereas the Graph API does. I'm sure that I can do this via a flow but I was hoping to do it directly in the app itself, using something like this:
Office365Groups.HttpRequest("https://graph.microsoft.com/v1.0/planner/tasks/" & Text(TaskListGallery_1.Selected.id_1),
"PATCH",
{ "Content-Type": "application/json",
"If-Match": "W/""JzEtV...snip...AQEBAQEBAQEBAQEBBaCc=""",
"title":"This is my new title!",
"priority":10
}
)
Thsi PATCH request requires the If-Match header and I can't find documentation that shows me how to include headers in such a request. Also, the above code has a syntax error: " The formula contains 'Content-Type' whre 'Ident' is expected." So, I have two questions:
- What does the "'Ident' is expected" error mean?
- How do you include specialized headers in formula like this?
Thanks!