ChangeDataActionThis action extracts a specific property from the input data object and sets it as the new return value.
Useful when you want to isolate and pass on a nested value instead of the full data object.
Returns only the value of data->{target}.
[
'target' => 'propertyName'
]
CompareActionThis workflow action evaluates one or more conditions against a model's properties.
Each condition can check for equality, inequality, string prefixes, or field changes.
You can also use dot-notation to access related model properties (e.g., user.name).
Useful for branching logic within workflows based on the current model state.
Supported condition actions: equals, notEquals, startsWith, changed.
[
[
'property' => 'status',
'action' => 'equals',
'value' => 'open'
],
[
'property' => 'user.name',
'action' => 'startsWith',
'value' => 'Jack'
]
];
CreateActionThis workflow action creates a new record using the configured key-value pairs.
The target model class must be provided when initializing this action.
Each configuration value is processed through the placeholder system for dynamic replacements.
This allows template values like ###user_email### to be resolved at runtime.
Returns true if the object was successfully created, and tracks all saved attributes as changes.
[
'name' => 'Example Name',
'email' => 'newuser@example.com',
'role' => 'member'
];
SendEmailActionThis action sends an email using 1tool-style placeholders (starting with three hashes: ###). It uses the currently logged-in user's email address as the sender.
to, subject, text) are missing,
the email will be skipped and not sent.
Attachments:
Set attachments_key to a relationship name or dotted data path on the workflow's context model; the file(s) found there are attached to the email. In a proposal context, attachments_key: "files" attaches the proposal's files (Proposal::files). The resolved value must be a File / Attachable (or a collection/array of them). Note the key is attachments_key, not attachments. Similarly, to, cc, and bcc are resolved against the context model when their value matches a property/path, otherwise used verbatim.
Returns:
A boolean: true if the email was sent successfully, false otherwise.
[
'to' => 'Recipient email address',
'subject' => 'Email subject line',
'text' => 'Main content/body of the email',
'cc' => 'Optional CC address (or data path on the context model)',
'bcc' => 'Optional BCC address (or data path on the context model)',
'attachments_key' => 'files', // Optional: relationship/data path on the context model; its File(s) are attached
'email_setting_id' => 'Optional EmailSetting id to send through',
];
SendHttpRequestActionThis action sends an HTTP request using the provided configuration options.
Useful when you want to trigger external APIs or webhooks as part of a workflow step, passing in custom headers, body content, and query parameters.
The HTTP response (status, headers, and body) will be stored in $this->returnValue for downstream use.
Supports:
GET)headers)body)query)[
'url' => 'https://api.example.com/send',
'method' => 'POST',
'headers' => [
'Authorization' => 'Bearer secret_token',
'Content-Type' => 'application/json',
],
'body' => [
'id' => 'data.id',
'email' => 'data.email',
],
'query' => [
'debug' => 'true'
]
]
SendInvoiceActionThis workflow action dispatches an invoice generation job for the specified user.
It uses the given userId and the current data->id (usually the invoice ID) to trigger the process.
The job runs asynchronously using Laravel's job queue system.
Returns a boolean: true if the job was successfully dispatched, false if the config was invalid.
[
'userId' => 'ID of the user for whom the invoice should be dispatched',
];
SleepActionThis workflow action delays execution for a number of seconds specified in the configuration.
It is useful for debugging, simulating delays, or testing time-based behavior in workflows.
Returns the original data unchanged after the sleep duration.
[
'sleep_duration' => 5
]
TranslateProposalActionUpdateActionThis workflow action updates fields on the given model using key-value pairs from the configuration.
Nested relationships can be updated by using dot notation (e.g., profile.bio).
Each value is processed through the configuration replacement system to support dynamic inputs.
Returns the updated model and tracks changed values internally.
[
'name' => 'New name value',
'email' => 'new@email.com',
'profile.bio' => 'Updated biography text'
]
UseChatGptActionThis action sends a message to OpenAI's ChatGPT API and returns the AI-generated response.
Useful when you want to automate replies, transform content, or generate text using AI within a workflow.
The action includes a preset system instruction to ensure ChatGPT behaves like a task executor:
"You're an assistant. Your role is to execute tasks exactly as requested, returning only the pure result without any suggestions, explanations, or additional help. Strip everything down to just what is asked—nothing more, nothing less."
The raw response is stored in $this->returnValue['content'].
[
'api_key' => 'sk-xxxx',
'query' => 'Translate this text to German: Hello, how are you?',
'model' => 'gpt-4o' // Optional, defaults to 'gpt-4o'
]