Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,28 @@ paths:
"401": { description: tenant context missing }
"413": { description: body exceeds 4 KiB cap }

/v1/onboarding/health:
get:
tags: [onboarding]
summary: Per-tenant onboarding funnel position plus actionable blockers.
description: |
Shareable with the customer. Returns the current Stage + reached
timestamps + a `blockers[]` list of next actions, plus surface
hints (agent online, GitHub App installed, Prometheus reachable)
the CSM team and the in-app banner consume to nudge the right
step. PR #41.
security:
- tenantHeader: []
- bearerAuth: []
- sessionCookie: []
responses:
"200":
description: onboarding health envelope
content:
application/json:
schema: { type: object, additionalProperties: true }
"401": { description: tenant context missing }

/v1/onboarding/preflight:
post:
tags: [onboarding]
Expand Down
Loading