Trigger an automation with an HTTP POST request
Automation with HTTP POST trigger
import { App, type AppSchema } from '@latechforce/engine';
const schema: AppSchema = {
automations: [
{
id: 1,
name: 'post',
trigger: {
service: 'http',
event: 'post',
params: {
path: 'post',
},
},
actions: [],
},
],
};
await new App().start(schema);
Table
Configure a table with a single select field
Configure a table with a phone number field
Configure a table with a URL field
Configure a table with a email field
Configure a table with a single line text field
Configure a table with a checkbox field
Configure a table with a long text field
Configure a table with required fields
Configure multiple tables
Automation
Respond to an HTTP request with a dynamic body
Respond to an HTTP request with a static body
Respond to an HTTP request
Run JavaScript code action with log
Run JavaScript code action with externals
Run JavaScript code action with input data
Run JavaScript code action
Run TypeScript code action with log
Run TypeScript code action with externals
Run TypeScript code action with input data
Run TypeScript code action
Create record action
Trigger an automation with an HTTP GET request
Trigger an automation with an HTTP GET request and respond immediately
Trigger an automation with an HTTP POST request with request body
Trigger an automation with an HTTP POST request with request body and respond immediately
Trigger an automation with an HTTP POST request and respond immediately
Trigger an automation with a cron time
Trigger an automation when a record is created
Trigger an automation when a record is updated
Run TypeScript code action
Form
Display a form
Display a form
Display a form
Display a form with a single select field
Display a form with an phone number field
Display a form with an url field
Display a form with an email field
Trigger an automation when a form with a single line text input is submitted
Display a form with a single line text field
Display a form with a single attachment field
Display a form with a checkbox field
Display a form with a long text field