One of our API has file upload functionality. Here is the swagger spec parameter for the file field.
{ "name": "file", "in": "formData", "description": "Desc", "required": false, "type": "file" }
When I send the request from Smart Docs (try out), the request is sent with Content-Disposition: attachment; filename="file" instead of Content-Disposition: form-data; name="file";
Can you suggest a way to fix attachment content-disposition format?