> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jurichat.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Obter progresso do tour guiado

> Retorna o estado salvo do tour guiado do usuário. `state: null` quando ainda não há registro.



## OpenAPI

````yaml https://api.jurichat.com/docs/client/openapi.json get /onboarding-progress/{userId}
openapi: 3.1.0
info:
  title: JuriChat API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.jurichat.com
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /onboarding-progress/{userId}:
    get:
      tags:
        - Onboarding
      summary: Obter progresso do tour guiado
      description: >-
        Retorna o estado salvo do tour guiado do usuário. `state: null` quando
        ainda não há registro.
      parameters:
        - schema:
            type: string
          in: path
          name: userId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  state:
                    type: object
                    additionalProperties: {}
                    nullable: true
                    description: >-
                      Estado salvo do tour guiado. `null` quando ainda não há
                      registro.
                required:
                  - state
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-jurichat-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-jurichat-api-key.

````