Skip to content

Instantly share code, notes, and snippets.

@CalebMuhia
Forked from sdnts/example.md
Created June 3, 2021 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CalebMuhia/5e4b54af6e65c59e107966ddaf8ad35c to your computer and use it in GitHub Desktop.
Save CalebMuhia/5e4b54af6e65c59e107966ddaf8ad35c 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.test("Status code is 200", function () {
    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);
});
@CalebMuhia
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment