Appearance
Dataport Script Reference: Actions
context.actions provides runtime actions that can be triggered from within a script.
context.actions.executeWorkflow()
Triggers a workflow by name within the current workspace.
Signature: executeWorkflow(name: string): void
Example:
js
// Trigger a workflow named 'Send Notification'
context.actions.executeWorkflow('Send Notification')