A Fastify API demonstrating Temporal workflow orchestration
Health check endpoint
Start a greeting workflow
curl -X POST https://typescript-temporal-example.staging.platform.convergint.tech/workflows/greeting \
-u admin:password \
-H "Content-Type: application/json" \
-d '{"name": "Alice", "greeting": "Hello"}'
Response
{
"workflow_id": "greeting-abc123...",
"run_id": "...",
"status": "started",
"temporal_url": "https://cloud.temporal.io/namespaces/.../workflows/.../history"
}