Server SDKs
Build AI agents, control calls, send messages, and more
Append multiple raw actions at once. Each action object is added to the action list in order.
Array of action objects to append. Each object should map a single action name to its payload.
FunctionResult — this, for chaining.
FunctionResult
this
1import { FunctionResult } from '@signalwire/sdk';23const result = new FunctionResult('Processing your request.')4 .addActions([5 { set_global_data: { status: 'active' } },6 { hold: 60 },7 ]);