Unable to Save the request body for API

I’m unable to hit save button to save the request body

save

That normally means there are no changes to save.

Make a slight change to the request body (you can change it back afterwards), does the save button become enabled then?

Save button is enabled but not clickable, that why I’m unable to save request

Also what needs to change in below test case as Test case is getting pASS even statues code is wrong
pm.test(“Check if the response status is 200”, function () {
var statusCode = pm.response.statusCode;
if (statusCode === 0) {
pm.expect(statusCode).to.equal(0);
} else {
console.log(“Response status is not 200”);
}
});

I can only suggest yet again to go through the Postman Learning Centre which has examples of checking the status code.

pm.test("Status code is 200", () => {
  pm.response.to.have.status(200);
});

I can’t fathom what you are trying to do with that IF statement. (It’s not needed).