Hi.
1. Yes, parameters are also variables, the only difference is that the
parameters are defined before running the script.
2. You usually specify the variable directly where your want the value.
You can obtain the value of a variable by wrapping it (by default) with
"{{" "}}". For example, assuming you have 3 variables named "Username",
"Password", and "MyAuthToken", they could be in a request body as:
username={{Username}}&password={{Password}}&authtoken={{MyAuthToken}}
3. You can use assign statements (e.g. "Assign variable via regex
delimiters", "Assign variable via string delimiters"), which one depends
on how you want to extract the value.
Best regards.