RESTED
RESTED copied to clipboard
Allow complete JSON input via textarea
A similar Chrome extension Talend API Tester - Free Edition allows the user to enter JSON input as actual JSON, not as key/value pairs.
I would like this functionality here, so that I can enter nested arrays and such in the parameters, and paste in the JSON body, like this:
{
"idList": [
"id1",
"id2"
],
"count": 2,
"obj": {
"item": "test"
}
}
It's already possible. You just need to change the request body type to "Custom".
But don't forget the Content-Type: application/json Header.
