AS
Size: a a a
AS
EB
[
СС
[
EB
NV
AS
NV
NV
EB
EB
СС
EB
NV
EB
NV
const echoPostRequest = {
url: 'https://postman-echo.com/post',
method: 'POST',
header: 'headername1:value1',
body: {
mode: 'raw',
raw: JSON.stringify({ key: 'this is json' })
}
};
pm.sendRequest(echoPostRequest, function (err, res) {
console.log(err ? err : res.json());
});