Closed vasnav closed 4 years ago
Well, dynamic query params are supported, You can checkout this example for that https://mrin9.github.io/RapiDoc/examples/dynamic-query-params.html
Dynamic form parameters are not yet done, but we do have plans to add it soon
provided support in 7.1.0
example: https://mrin9.github.io/RapiDoc/examples/dynamic-form-params.html
Hi, Does RapiDoc support sending dynamic formdata string parameters in the url? As per the link https://stackoverflow.com/questions/49875184/how-to-describe-dynamic-form-data-using-openapi-swagger, OpenAPI 3.x supports free-form formdata parameter. Does RapiDoc support it?
Please find below our .yaml file:
The custom query parameter is correctly shown as: "https://sample/users?customQuery=2"
The custom formdata parameter is incorrectly shown as: "https://sample/users?customQuery=2" -H "Content-Type: application/x-www-form-urlencoded" -F "QuestionAnswerPair=a=b" Instead custom formdata parameter should be: "https://sample/users?customQuery=2" -H "Content-Type: application/x-www-form-urlencoded" -F "a=b"