Triggers overview
API, cron, and background-task trigger types.
Deploy a trigger
Wire a build to API or Cron ingress.
Graph Studio
Design automation logic on the canvas.
What Autonomous graphs do

Integrations — Triggers tab for Autonomous deploy targets
Trigger types
See Triggers overview for the full automation hub.
Design workflow
- Create an Autonomous Agent Graph from Workspace Home.
- In Graph Studio, model the automation as nodes — typically Start → agent/tool chain → End.
- Attach tools for each external action (CRM update, email send, data fetch).
- Use variables to pass trigger payload fields into tool inputs.
- Click Save, then Build (Builds overview).
- Assign the build to DEV / UAT / PROD.
- Click Deploy and choose a target:
Deploy an API trigger
- Build and assign your Autonomous graph to the target environment.
- Click Deploy → Deploy as API.
- Select build version and confirm trigger configuration.
- Copy the webhook URL and authenticate with your workspace API key.
- POST a JSON payload from your upstream system to start a run.
Deploy a cron schedule
- Build and assign the graph.
- Click Deploy → Cron job.
- Enter the cron expression and timezone.
- Select environment and build version.
- Confirm — Phinite runs the graph on schedule.
Best practices
- Design actions to be idempotent — triggers may retry or duplicate.
- Return structured outputs and capture variables for downstream auditing.
- Set timeouts and error branches so failed tool calls do not leave silent failures.
- Test with sample payloads in DEV before promoting builds to PROD.
- Monitor runs in Observability — there is no user to report errors.

