diff --git a/CONFIGURATION.md b/CONFIGURATION.md index 71b740d6..0e808d55 100644 --- a/CONFIGURATION.md +++ b/CONFIGURATION.md @@ -158,9 +158,13 @@ modules: [ body: ] # Read the HTTP request body from from a file. - # It is mutually exclusive with `body`. + # It is mutually exclusive with `body` and `body_multipart`. [ body_file: ] + # Read the HTTP request body from from a file. + # It is mutually exclusive with `body` and `body_file`. + [ body_multipart: ] + [ - , ... ] ``` #### `` @@ -171,6 +175,17 @@ regexp: , [ allow_missing: | default = false ] ``` +#### `` + +```yml +# The type of the multipart body part. Valid values are "file" and "text". +type: +# The name of the multipart body part. +key: +# The value of the multipart body part. It can be a file path or a string. +value: +``` + ### `` ```yml