Hi @MediafieldsWeb ,
I’m facing the same problem; I’ve inserted a header in a HTTP request in Power Automate, but it seems to get lost on the way because the flow results in a “header is missing” error. I’ve done the exact same request using VBA, the same header is being received and it works. I’m very curious about if you were able to fix the problem?
For those who want to help; here is more information about the failed request.

(“kopteksten” is Dutch voor “headers”)
The unedited input for the flow in Power Automate is:
"uri": https://api.bag.acceptatie.kadaster.nl/lvbag/individuelebevragingen/v2/adressenuitgebreid?postcode=2594AN&huisnummer=265&exacteMatch=true,
"method": "GET",
"headers": {
"X-Api-Key": "xxxxxxxxxxx",
"Accept-Crs": "epsg:28992"
The error in the output from the flow in Power Automate is:
"status": 412,
"title": "Gewenste coördinatenstelsel voor geometrie moet worden opgegeven.",
"type": "https://tools.ietf.org/html/rfc7232#section-4.2",
"detail": "Precondition failed.",
"instance": "https://api.bag.acceptatie.kadaster.nl/lvbag/individuelebevragingen/v2/adressenuitgebreid?postcode=2594AN&huisnummer=265&exacteMatch=true",
"code": "acceptCrsMissing"
This is puzzling because the header ‘Accept-Crs’ was added in the request.
When I use requestcatcher.com I can see that only the ‘Accept-Crs’ header isn’t being send by Power Automate. Could there be some kind of validation of standard accepted ‘accept’ and ‘content’ headers? And is it possible to bypass this mechanism?