Get setup hub status
get
https://api.intelig.ai/api/v1/intelig/onboarding/setup-status
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getSetupStatus
Returns setup sections, steps, and completion status
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/onboarding/setup-status" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Response 200
application/json · ApiResponseSetupStatusDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | SetupStatusDto | Complete onboarding setup hub status |
Status codes
200— Setup status retrieved successfully401— Not authenticated403— Insufficient permissions to access settings429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.