Common endpoints
GET /statusGET /tenantsandPOST /tenantsGET /tenants/{tenantId}/timelinesPOST /tenants/{tenantId}/timelines/{timelineId}/branchesPOST /tenants/{tenantId}/timelines/{timelineId}/compute
API
The local default base URL is http://127.0.0.1:9090. Request and response bodies use JSON, and errors return an error field.
GET /statusGET /tenants and POST /tenantsGET /tenants/{tenantId}/timelinesPOST /tenants/{tenantId}/timelines/{timelineId}/branchesPOST /tenants/{tenantId}/timelines/{timelineId}/computecurl -X POST http://127.0.0.1:9090/tenants \
-H "Content-Type: application/json" \
-d '{"name": "my-project"}'
curl -X POST \
http://127.0.0.1:9090/tenants/TENANT_ID/timelines/TIMELINE_ID/branches \
-H "Content-Type: application/json" \
-d '{"name": "feature-branch"}'
curl -X POST \
http://127.0.0.1:9090/tenants/TENANT_ID/timelines/TIMELINE_ID/compute \
-H "Content-Type: application/json"