> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/015_account/004__get_onboarding_status.md).

# Get Onboarding Status

GraphQL endpoint: `/user`

Returns the per-step onboarding status for the current user, plus a `fullyOnboarded` flag that becomes true once every *required* step is completed or skipped. `invitedContactsStep` is reported but doesn't count towards it, so `fullyOnboarded` can be true while that step is still pending — don't derive it from the steps yourself.

## Query

```graphql
query {
  onboardingStatus {
    initialLoginStep
    personalInformationStep
    contactInformationStep
    interestsInformationStep
    socialNetworkInformationStep
    companyRegisteredStep
    invitedContactsStep
    fullyOnboarded
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "onboardingStatus": {
      "companyRegisteredStep": "INCOMPLETE",
      "contactInformationStep": "INCOMPLETE",
      "fullyOnboarded": false,
      "initialLoginStep": "INCOMPLETE",
      "interestsInformationStep": "INCOMPLETE",
      "invitedContactsStep": "COMPLETED",
      "personalInformationStep": "COMPLETED",
      "socialNetworkInformationStep": "INCOMPLETE"
    }
  }
}
```
