Triggers: API Routes and Schedules
For managing triggers which can invoke data processes. Currently the following trigger features are available in Studio:
- API routes
- Schedules
If multiple data processes are linked to a trigger asset, they will be invoked synchronously.
Create an API Route
API routes are custom HTTP API endpoints that can be deploy live onto LOC's gateway.
After creating a project in the Data Process panel or upload one via CLI, you can right-click the project in the API Route panel and click Create API Route.

For creating an API route, the following options can be set:
- The HTTP protocol is always HTTPs
- HTTP method:
GET
,POST
,PUT
,PATCH
,DELETE
, etc. - API path and prefix
- Request mode:
Sync
(synchronous) orAsync
(asynchronous) - Response content type:
AUTO
,JSON
,YAML
orXML
- Encapsulation (whether or not to embed task results inside execution metadata; default
true
) - Linked data processes and revision
See Create and Use an API Route Trigger for how to create an API route in Studio, as well as the example of API responses.