How to extract a specific value from a Request Body in POSTMAN and save in a variable

Based on our discussion your request type is not raw, it is ā€œx-www-form-urlencodedā€.

so try this snippet,

console.log(pm.request.body.urlencoded);

Similar to this topic.

You can refer this link for more details.

@harutharut Itā€™s all the same details we discussed yesterday, sharing it here so that it might be useful for someone in future :blush:

Please let me know if thereā€™s still any issue.