ddavison / rest-client

A simple REST client for the Atom editor!
http://atom.io/packages/rest-client
MIT License
53 stars 29 forks source link

How to pass parameters #43

Closed astimes closed 8 years ago

astimes commented 8 years ago

How to pass parameters

ddavison commented 8 years ago

by parameter, i assume you mean passing POST data, for example? If so, that's the "payload" box.

If your REST API accepts JSON, set the MIME to application/json, and pass your parameters in the payload box like so:

{
  "param1": "something",
  "param2": "something"
}
astimes commented 8 years ago

thanks