DevSay
DevSay

Reputation: 1176

Sending a Post request in postman pre-script

I am trying to send POST request in a pre-script using postman but getting error "There was an error in evaluating the Pre-request Script: Error: Unexpected token '<' at 1:1 ^". Not sure whats wrong. Can anyone help me with this?

pm.sendRequest({
url: 'http://localhost:8001/routes/d6b7a95a-fd91-4f8a-b8f6-10835f30170a',
method: 'PATCH',
headers: {"Content-Type": "application/json"},
body: { 
    mode: 'raw',
    raw:JSON.stringify({
        "protocols":["http","https"],
        "paths":["/target-paymentoriginal"],
        "methods":[]})}  }, 

function (err, response) {  console.log("Updated original route to target-payment"+response.json());  });

Upvotes: 6

Views: 12035

Answers (1)

Danny Dainton
Danny Dainton

Reputation: 25881

The key for specifying the headers is incorrect.

It should be:

header: {"Content-Type": "application/json"} -

You need to remove the s from your code.

Upvotes: 11

Related Questions