
Announcements
I'm trying to use the Dataverse Web API. I can call the POST just fine in Postman but I have to get an OAuth2 token. How is this handled in a Power Automate Desktop flow using the Invoke Web Service?
Hi @ebonnett
OAuth2 tokens can be specified in headers
You can refer this posts
For example : token is 123456, you want to pass in the header, and assuming you want to pass multiple headers, then first create a list and each header as element to the list.
The header format should as below
key:value
as shown below
Here header added is Authorization:Bearer 123456 , 123456 is the access token.
Once done, you can pass the list into header section in invoke webservice
Thanks & Regards,
Nived N