Low Entry Plugins

  1. You can type in any method yourself with the “Set URL (Custom)” blueprint (if I remember its name correctly).

  2. The “Set Content as JSON String” just sets the whole request body to that JSON string, and then it sets the content type to “application/json”. So it doesn’t convert it to key/value pairs no, the other blueprints do that, the “Set Content As String Parameter” (or something similar to that), those blueprints will create a “a=1&b=2&c=3” parameter list and sets that as the request body (in server-side languages, those are often called POST variables).

I hope that answered your questions, otherwise let me know!