Request Bodies 
Two options: inline body or body_file.
Inline 
toml
body = { name = "{{username}}", content = "{{file:data/doc.txt}}" }File-based 
toml
body_file = "data/create-user.json"Notes
- Paths are relative to the test file directory.
 .jsonfiles are parsed; others are sent as text.bodyandbody_fileare mutually exclusive.
See also: File Bodies Reference