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

# Remove admin

> Remove an administrator



## OpenAPI

````yaml docs/api-reference/general-monitoring.yaml delete /admins/{adminId}
openapi: 3.0.3
info:
  title: Zochil General Monitoring API
  description: >
    Zochil platform general monitoring API for system administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.
  version: 1.0.0
  contact:
    name: Zochil Support
    email: info@zochil.mn
  license:
    name: Proprietary
servers:
  - url: https://api.zochil.io/v3/monitoring
    description: API server
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Admin authentication and session management
  - name: Admin Management
    description: System administrator management
  - name: Profile
    description: Admin profile management
paths:
  /admins/{adminId}:
    delete:
      tags:
        - Admin Management
      summary: Remove admin
      description: Remove an administrator
      parameters:
        - name: adminId
          in: path
          required: true
          schema:
            type: string
          description: Admin ID
      responses:
        '200':
          description: Admin removed successfully
        '404':
          description: Admin not found
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````