Creating a request with raw json body

@Victor_Motogna Welcome to the Community :partying_face:

You can try something like

var body = {
    "field1" : "value",
    "field2" : "value2"
  };

body: {
  mode: 'raw',
  raw: JSON.stringify(body)
}

Please refer this link for examples :innocent:

2 Likes