What I want to do is to read a json message from at Service Bus queue, and then call a REST API with that json message. Exact same format, no need for mapping.
What I have done so far is created a Azure Logic App with a Service Bus trigger.
I call the API with the body of the message.
I get a HTTP 400 Bad Request response with a list of fields that are missing.
The request from the Logic app sends the json doc base64 encoded in the ContentData field, "ContentTransferEncoding": "Base64"
The Content type in the header is application/json.
If I decode the string and post that json using Postman, it works fine.
Any Ideas?