Skip to Content
Browser UtilswriteProfileInput

writeProfileInput

Write a value to the profile input. This persists across flow runs for the same profile.

Signature

await utils.writeProfileInput(key, value)

Parameters

ParamTypeDescription
keystringProfile input key (must match config)
valuestring | number | booleanValue to store

Examples

await utils.writeProfileInput("token", "abc123"); await utils.writeProfileInput("retryCount", 3); await utils.writeProfileInput("lastRun", new Date().toISOString());
Last updated on