Thrive AI Health
Api reference

Member's progressive-onboarding state

Returns eligibility, aggregate completion counts, and the full task list. Single-call source of truth for partner-side onboarding UI — render task list, progress count, and completion state from one response.

GET
/v1/users/{user_id}/onboarding

Authorization

MemberBearer
AuthorizationBearer <token>

Member-scoped JWT minted by POST /v1/auth/token. Required on every /v1/users/{user_id}/... route; the token's sub claim must match the path user_id.

In: header

Path Parameters

user_id*User Id
Formatuuid

Header Parameters

org-id?string|null
x-user-id?string|null
x-request-id?string|null
traceparent?string|null
Idempotency-Key?|null

Response Body

application/json

application/json

curl -X GET "https://loading/v1/users/497f6eca-6276-4993-bfeb-53cbbbba6f08/onboarding"
{
  "data": {
    "progressive_onboarding_enabled": true,
    "eligible": true,
    "is_complete": true,
    "completed_count": 0,
    "total_count": 0,
    "tasks": [
      {
        "task_id": "string",
        "title": "string",
        "status": "pending"
      }
    ]
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}