I want to parameterized my tests in Postman. This is the example body of POST request:
{
"entity_id": "{{entity_id}}",
"text": data.comment_name
}
entity_id is global variable and it works correctly, but I want to set value of text from JSON file.
data.comment_name doesn't work it saved me exactly data.comment_name as text variable. I want to include this JSON file with all variables in collection runner. How can I do that?
