Processor Arguments

Arguments Overview

Arguments can be passed to a processor either through url params or via form element values. These values will be accessible within the args property of the processors context. This is shown in the following example -

// particular value here is a value that has been
// provisioned to a processor either via the url params
// or through a form element.
this.args.particularValue;

Imagine a standalone processor with a uid of SOME_PROCESSOR and calling this processor via url as

curl --location --request GET "{{domainUrl}}/api/processors/run/SOME_PROCESSOR?particularValue=2"

The property particularValue will be available in that processors arguments (this.args).