> ## 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.

# Get preorder admin user detail

> Get detailed information about a specific preorder admin user



## OpenAPI

````yaml docs/api-reference/marketplace-monitoring.yaml get /preorder-admin-users/{id}
openapi: 3.0.3
info:
  title: Zochil Marketplace Monitoring API
  description: >
    Zochil platform marketplace monitoring API for marketplace administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.

    Some endpoints may also require `merchant-id` header for merchant-specific
    operations.
  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: Marketplace admin authentication
  - name: Marketplace Admins
    description: Marketplace administrator management
  - name: Marketplaces
    description: Marketplace management and configuration
  - name: Categories
    description: Product category management
  - name: Products
    description: Product catalog management
  - name: Orders
    description: Order processing and management
  - name: Merchants
    description: Merchant account management
  - name: Users
    description: User account management
  - name: Banners
    description: Marketing banner management
  - name: Campaigns
    description: Marketing campaign management
  - name: Subscriptions
    description: Marketplace subscription management
  - name: Menu Categories
    description: Main menu category management
  - name: Notifications
    description: Notification management
  - name: Shipments
    description: Shipment and logistics management
  - name: Shipment Invoices
    description: Shipment invoice management
  - name: Preorder Admin Users
    description: Preorder admin user management with PIN authentication
  - name: Reporting
    description: Reporting and analytics
  - name: Profile
    description: Admin profile management
paths:
  /preorder-admin-users/{id}:
    get:
      tags:
        - Preorder Admin Users
      summary: Get preorder admin user detail
      description: Get detailed information about a specific preorder admin user
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: User ID
      responses:
        '200':
          description: Preorder admin user details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/PreorderAdminUser'
components:
  schemas:
    PreorderAdminUser:
      type: object
      properties:
        id:
          type: integer
          description: User ID
        phone:
          type: string
          description: Phone number
        email:
          type: string
          format: email
          description: Email address
        full_name:
          type: string
          description: Full name
        user_type:
          type: string
          enum:
            - preorder_admin
          description: User type
        is_verified:
          type: boolean
          description: Whether user is verified
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````