Member Junction
    Preparing search index...

    Runs a MJ: Record Processes definition — the agent / workflow / low-code surface for the same engine the bulk-update UX drives. Thin by design: it parses params and delegates to RecordProcessExecutor (never to another action).

    Parameters:

    • RecordProcessID (Input, required) — the process to run.
    • Scope (Input, optional) — a JSON-string RecordProcessScopeOverride ({Kind:'records',RecordIDs:[…]} / {Kind:'view',ViewID} / {Kind:'list',ListID} / {Kind:'filter',Filter}). Omit to use the process's stored Scope.
    • DryRun (Input, optional) — when true, compute changes without writing (FieldRules work type).
    • ProcessRunID / Processed / Succeeded / Errored / Skipped (Output) — the run summary.
    await runAction({
    ActionName: 'Run Record Process',
    Params: [
    { Name: 'RecordProcessID', Value: rpId },
    { Name: 'Scope', Value: JSON.stringify({ Kind: 'records', RecordIDs: ids }) },
    { Name: 'DryRun', Value: true },
    ],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods