encode_url

On this page

Description:

This key defines whether the value is URL encoded on change.

Appears in:
├── URL Input
│   └── options
│       └── encode_url
└── _inputs
    └── *
        └── File Input
            └── options
                └── encode_url
Type:
boolean
Default value:
false
Examples:

In this example, we have configured a File Input to encode URLs to prepare for filenames that may contain spaces.

Copied to clipboard
_inputs:
  file_path:
    type: file
    options:
      encode_url: true
{
  "_inputs": {
    "file_path": {
      "type": "file",
      "options": {
        "encode_url": true
      }
    }
  }
}
Open in a new tab