Skip to content

Instantly share code, notes, and snippets.

@techyrajeev
Forked from sdnts/example.md
Created March 30, 2018 05:29
Show Gist options
  • Save techyrajeev/d2c025fb5edc82f6bb69ef672c7cc7f6 to your computer and use it in GitHub Desktop.
Save techyrajeev/d2c025fb5edc82f6bb69ef672c7cc7f6 to your computer and use it in GitHub Desktop.
Postman pm.sendRequest example
To send a request via the sandbox, you can use pm.sendRequest.
```
pm.sendRequest('https://postman-echo.com/get', function (err, res) {
pm.expect(err).to.not.be.ok;
pm.expect(res).to.have.property('code', 200);
pm.expect(res).to.have.property('status', 'OK');
});
```
Without additional options, this will sent a GET request to the URL specified.
If you prefer to be more explicit, you can use the complete syntax:
```
pm.sendRequest({
url: 'https://postman-echo.com/post',
method: 'POST',
header: 'headername1:value1',
body: {
mode: 'raw',
raw: JSON.stringify({ key: "this is json" })
}
}, function (err, res) {
console.log(res);
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment