API Reference / Onboarding

Get onboarding progress

get https://api.intelig.ai/api/v1/intelig/onboarding/progress

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getProgress

Returns the current user's onboarding step

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/onboarding/progress" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Response 200

application/json · ApiResponseUserOnboardingProgressDto

FieldTypeDescription
success boolean
message string
data UserOnboardingProgressDto User's current onboarding progress

Status codes

  • 200 — Onboarding progress retrieved successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access settings
  • 429 — —

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.