edoc automate Guide
Breadcrumbs

route\GetParam - edoc automate

The GetParam action returns the specified parameter of the current route of the called views.

The returned values can also be checked automatically.

Parameters

Type

Name

Description

TEXT

name

Specifies the name of the parameter in the route.

SELECT

validation type

Specifies the type of validation to be used for the value of the parameter. The following validation types are available: Number, Text, Regex.

TEXT

validation pattern

Specifies the validation pattern to be used for the value of the parameter. The selected validation type determines which values you must enter for the validation to be performed. You can enter multiple values separated by a semicolon.

  • Number: Numbers and ranges are permitted. Example: 1; 2-5

  • Text: Allowed are letters and combinations of letters, numbers, and special characters. Example: Text; "Text1: (%)"; '"Text1": (?)'

  • Regex: Regular expressions are permitted. All default delimiters for regular expressions are permitted as start and end characters. Example for several numbers: @\d+@.

Return

Type

Description

SINGLEVALUE

Returns the value of the parameter.