{{ getCurrentViewTitle() }}
Welcome to Qriton Orchestra! ๐
Get started by creating your first orchestration workflow.
No executions yet. Create and trigger your first orchestration!
Execution Trends
No orchestrations yet
Create your first orchestration to automate workflows
{{ orch.name }}
{{ orch.status }}{{ orch.description || 'No description' }}
No data sources configured
No prompts created
No executions yet
No email reports configured
๐ API Credentials
{{ user.apiKey || user.api_key }}
Keep this key secure. Regenerate if 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 }}"