Create a Unified API
Basic Details
| Field | Description |
|---|---|
| Name | API identifier in kebab-case (e.g., wms) |
| Label | Display name (e.g., “Warehouse Management”) |
| Category | Organizational grouping |
/unified/{name}
Add Resources
Resources are the data types in your API (e.g.,orders, inventory).
Define Schema
The schema describes your response structure:Add Methods
Methods define operations on resources. Standard methods:list, get, create, update, delete
Configure Mappings
For each integration, define how to translate data.Query Mapping
Transform query parameters:Response Mapping
Transform responses using JSONata:Request Body Mapping
For create/update operations:Static Responses
For endpoints that return fixed data:- Enable Static Mapping
- Define the response:
Before and After Steps
Before Steps
Run before the main API call:- Fetch related data
- Validate inputs
- Set up context
After Steps
Run after the main API call:- Enrich responses
- Fetch complete records after creates
- Log events

