We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given PAW params:
I get the output of:
axios({ "method": "GET", "url": "http://localhost/...", "params": { "value[]": "1,2" }, "headers": { "Content-Type": "application/json;charset=UTF-8", } })
I expected:
axios({ "method": "GET", "url": "http://localhost/...", "params": { "value": ["1", "2"] }, "headers": { "Content-Type": "application/json;charset=UTF-8", } })
The query works when I use PAW to hit the service or when I use the cURL extension.
Thanks!
The text was updated successfully, but these errors were encountered:
I noticed this issue is for the URL params rendering, not the JSON body.
params
Sorry, something went wrong.
No branches or pull requests
Given PAW params:
I get the output of:
I expected:
The query works when I use PAW to hit the service or when I use the cURL extension.
Thanks!
The text was updated successfully, but these errors were encountered: