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

# Reset Deployment

> Re-open onboarding for the workspace (admin only).



## OpenAPI

````yaml /api-reference/openapi.json post /api/onboarding/deployment/reset
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/onboarding/deployment/reset:
    post:
      tags:
        - onboarding
      summary: Reset Deployment
      description: Re-open onboarding for the workspace (admin only).
      operationId: reset_deployment_api_onboarding_deployment_reset_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentRead'
components:
  schemas:
    DeploymentRead:
      properties:
        onboarding_complete:
          type: boolean
          title: Onboarding Complete
          default: false
        schema_version:
          type: integer
          title: Schema Version
          default: 2
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
        selected_components:
          items:
            type: string
          type: array
          title: Selected Components
        enabled_feature_keys:
          items:
            type: string
          type: array
          title: Enabled Feature Keys
        primary_app_uuid:
          anyOf:
            - type: string
            - type: 'null'
          title: Primary App Uuid
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      title: DeploymentRead
      description: Server-authoritative view of the workspace deployment configuration.

````