{{ getCurrentViewTitle() }}
Recent Executions
Last {{ recentExecutions.length }} workflow runs
No executions yet
Start by triggering an orchestration workflow
Execution Activity
Last 7 days workflow performance
Top Orchestrations
Most executed workflows
Status Breakdown
Success vs Failed executions
System Status
Platform health & operations
No templates found
Try a different search term
{{ category }}
{{ template.name }}
{{ template.description }}
Basic Information
Data Source
No data sources available
This template requires a data source to function. Create one to get started.
Schedule
Notifications
Review & Deploy
Verify your workflow configuration
No orchestrations yet
Create your first orchestration to automate workflows
{{ orch.name }}
{{ orch.description || 'No description provided' }}
No data sources configured
Create data sources to connect to external APIs and databases
No results found
No data sources match your search query
{{ source.name }}
{{ source.type }}{{ source.config.url }}
No prompts created
Create AI prompts to process your data intelligently
No results found
No prompts match your search query
{{ prompt.name }}
{{ prompt.model }}No executions yet
Orchestrations will appear here once they run
No results found
No executions match your search query
📧 Email Reports
Automated execution summaries delivered to your inbox
No email reports configured
Set up automated reports to receive execution summaries on a schedule
🔑 API Credentials
{{ user.apiKey || user.api_key }}
Keep this key secure. Use the regenerate button if your key has been compromised.
⚡ Your Orchestrations - Quick Trigger
No orchestrations yet. Create one to see API commands here.
{{ orch.name }}
{{ orch.status }}{{ orch.description || 'No description' }}
🚀 Trigger via cURL:
curl -X POST {{ apiUrl }}/api/execute/{{ user.apiKey || user.api_key }}/{{ orch.id }}
📊 Get Status:
curl -X GET {{ apiUrl }}/api/orchestrations/{{ orch.id }}/status \
-H "X-API-Key: {{ user.apiKey || user.api_key }}"
📚 API Reference
Create New Orchestration
curl -X POST {{ apiUrl }}/api/orchestrations \
-H "X-API-Key: {{ user.apiKey || user.api_key }}" \
-H "Content-Type: application/json" \
-d '{
"name": "My New Orchestration",
"schedule_type": "interval",
"schedule_config": {"interval": 60},
"workflow": {
"webhook": {
"url": "https://your-app.com/webhook",
"method": "POST"
}
}
}'
List All Orchestrations
curl -X GET {{ apiUrl }}/api/orchestrations \
-H "X-API-Key: {{ user.apiKey || user.api_key }}"