Function Types
Function types determine how integration logic is implemented. Each Action and Flow node uses a function type.
| Function Type | Description |
|---|---|
| JavaScript | Run custom JavaScript/TypeScript logic |
| Mapping | Transform data using declarative field mappings |
| REST API Mapping | Map fields to REST API request parameters |
| GraphQL API Mapping | Map fields to GraphQL queries and mutations |
| API Request to External App | Make authenticated requests to a connected app's API |
| API Request to Your App | Make requests to your backend's Internal API |
| HTTP Request | Make arbitrary HTTP requests |
| List Data Records | List records from a data collection |
| Find Data Record By ID | Find a specific record by its ID |
| Search Data Record | Search records by query string |
| Match Data Record | Find a record matching specific criteria |
| Create Data Record | Create a new record in a data collection |
| Update Data Record | Update an existing record |
| Delete Data Record | Delete a record |
| Run Action | Execute another action |
Updated 5 days ago