provisioning/docs/src/api-reference
2026-01-14 04:59:11 +00:00
..
schemas chore: complete nickel migration and consolidate legacy configs 2026-01-08 09:55:37 +00:00
extensions.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
integration-examples.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
nushell-api.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
path-resolution.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
provider-api.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
README.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
rest-api.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
sdks.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00
websocket.md chore: fix docs after fences fix 2026-01-14 04:59:11 +00:00

API Documentation

API reference for programmatic access to the Provisioning Platform.

Available APIs

Quick Start

# Check API health
curl http://localhost:9090/health

# List tasks via API
curl http://localhost:9090/tasks

# Submit workflow
curl -X POST http://localhost:9090/workflows/servers/create 
  -H "Content-Type: application/json" 
  -d '{"infra": "my-project", "servers": ["web-01"]}'

See REST API for complete endpoint documentation.