RESTED icon indicating copy to clipboard operation
RESTED copied to clipboard

Allow complete JSON input via textarea

Open mbomb007 opened this issue 6 years ago • 1 comments

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"
  }
}

mbomb007 avatar Dec 03 '19 18:12 mbomb007

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.

Bildschirmfoto vom 2020-01-15 13-04-05

p1zz4br0etch3n avatar Jan 15 '20 12:01 p1zz4br0etch3n