I am using HTML to download xlsx,pdf files using POST call. I am using the below code to send my payload but it is sending as url format,
<form method="post" action="{{url}}" enctype='application/json'>
<input type="text" name="type" value="{{type}}" hidden>
<input type="text" name="paramValue" value="{{value}}" hidden>
</form>
Request body
type=Shop¶mValue=Kumar
I need to pass it as JSON because of this I am getting an error as,
Response HTTP/1.1 415 Unsupported Media Type
Please suggest how to pass the data as JSON in case of using form in HTML.