I am trying to a send a HTTP Post request with some parameters in the JSON Schema.
Post
However, when this request is triggered, I get this error
{"error":{"code":"TriggerRequestMethodNotValid","message":"The HTTP method for this request is not valid: expected 'Post' and actual 'GET'."}}
I notice that it is always sending a GET request even if I sent a post method. How would I be able to send a Post request? I am trying to send some parameters within the body. I don’t want my parameters to be visible in the URL.
