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

# Complete onboarding

> Completes onboarding without creating a project or launch task for either a user who belongs to a team or a self-serve user with a connected GitHub installation and a connected Codex, Claude Code, or OpenCode credential.



## OpenAPI

````yaml api-reference/openapi.account.json POST /profile/onboarding/complete
openapi: 3.1.0
info:
  title: Aether Account & Integrations API
  version: 0.1.0
  description: >-
    Account, billing, and integration-management endpoints used by the Aether
    web app and CLI. Root-mounted; NOT part of the versioned /v1 contract.
servers:
  - url: https://api.runaether.dev
security:
  - bearerAuth: []
paths:
  /profile/onboarding/complete:
    post:
      tags:
        - profile
      summary: Complete onboarding
      description: >-
        Completes onboarding without creating a project or launch task for
        either a user who belongs to a team or a self-serve user with a
        connected GitHub installation and a connected Codex, Claude Code, or
        OpenCode credential.
      operationId: completeOnboarding
      parameters:
        - description: >-
            Which client flow is completing onboarding: the CLI setup wizard,
            the standalone CLI command, or the web app.
          explode: false
          in: query
          name: client_flow
          schema:
            description: >-
              Which client flow is completing onboarding: the CLI setup wizard,
              the standalone CLI command, or the web app.
            enum:
              - setup
              - command
              - web
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompleteInvitedOnboardingResponse'
          description: OK
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                anyOf:
                  - $ref: '#/components/schemas/ErrorResponse'
                  - $ref: '#/components/schemas/OrgAuthorizationErrorResponse'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not Found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unprocessable Entity
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
components:
  schemas:
    CompleteInvitedOnboardingResponse:
      additionalProperties: false
      properties:
        already_completed:
          type: boolean
        onboarding_completed:
          type: boolean
      required:
        - onboarding_completed
        - already_completed
      type: object
    ErrorResponse:
      additionalProperties: false
      properties:
        code:
          type: string
        error:
          minLength: 1
          type: string
      required:
        - error
      type: object
    OrgAuthorizationErrorResponse:
      additionalProperties: false
      properties:
        code:
          enum:
            - org_membership_required
            - org_role_insufficient
            - org_suspended
          type: string
        error:
          minLength: 1
          type: string
      required:
        - error
        - code
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````