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

# Api Account Reset

> Reset the account: clear Platinur-generated state, optionally drop Platinur's own
warehouse namespaces, and UNBIND the warehouse engine so the account can choose a new one.

Owner/admin only and double-gated: the warehouse binding is otherwise fixed, so the
JSON body must carry the typed confirmation ``{"confirm": "RESET", "drop_warehouse_objects":
false}``. ``drop_warehouse_objects`` opts into dropping ONLY Platinur's env output + validation
namespaces (never the customer's raw/source schemas).



## OpenAPI

````yaml /api/openapi.json post /api/account/reset
openapi: 3.1.0
info:
  description: >-
    Environment-aware APIs for Platinur configuration, integrations, operations,
    promotions, scheduling, monitoring, and assistant tasks.
  title: Platinur Control Plane API
  version: 1.0.0-rc3
servers:
  - description: Local Platinur control-plane API
    url: http://localhost:8080
security: []
paths:
  /api/account/reset:
    post:
      tags:
        - Settings
      summary: Api Account Reset
      description: >-
        Reset the account: clear Platinur-generated state, optionally drop
        Platinur's own

        warehouse namespaces, and UNBIND the warehouse engine so the account can
        choose a new one.


        Owner/admin only and double-gated: the warehouse binding is otherwise
        fixed, so the

        JSON body must carry the typed confirmation ``{"confirm": "RESET",
        "drop_warehouse_objects":

        false}``. ``drop_warehouse_objects`` opts into dropping ONLY Platinur's
        env output + validation

        namespaces (never the customer's raw/source schemas).
      operationId: api_account_reset_api_account_reset_post
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````