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.