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

# Mount Details

> This endpoint retrieves the mount details for the specified KVM VPS.  
The `api_host` parameter, obtained from the **"Create AUTH-session"** response,  
is dynamically set in the URL.  
Provide the `signature`, `kvm_id`, and `valid_until` parameters obtained  
from the same response to access the mount details.




## OpenAPI

````yaml post /kvm/v2/get/mount
openapi: 3.0.0
info:
  title: EDIS Global Management API
  description: >
    Use the API to access and manage your VPS services, including power control,
    rDNS, and VNC management.  

    **Authentication:** Enable API access on any KVM VPS you own. Then use the
    provided credentials to authenticate your requests.
  version: 1.0.0
servers:
  - url: https://{api_host}
    description: Dynamic API host returned from the AUTH session endpoint.
    variables:
      api_host:
        default: api_host.edisglobal.com
        description: >-
          Enter the full API host exactly as returned by /kvm/v2/get/auth (for
          example: 12345.edisglobal.com)
security: []
tags:
  - name: Authentication
    description: Create an AUTH Session
  - name: Power Management
    description: KVM Power Management
  - name: Installation
    description: ISO, Turnkey, Reinstall
  - name: Settings
    description: KVM System Settings
  - name: Collect Information
    description: KVM VPS Details.
  - name: VNC Management
    description: KVM VNC Access
  - name: PTR
    description: KVM Reverse DNS
  - name: Traffic Pool
    description: Traffic Pool Management
  - name: Hooks
    description: KVM Webhook Management
paths:
  /kvm/v2/get/mount:
    post:
      tags:
        - Collect Information
      summary: Get mount details
      description: >
        This endpoint retrieves the mount details for the specified KVM VPS.  

        The `api_host` parameter, obtained from the **"Create AUTH-session"**
        response,  

        is dynamically set in the URL.  

        Provide the `signature`, `kvm_id`, and `valid_until` parameters
        obtained  

        from the same response to access the mount details.
      operationId: getMountDetails
      requestBody:
        description: >
          Required parameters to fetch mount details for a KVM VPS.  

          All parameters must be passed in the request body as
          `application/x-www-form-urlencoded`.
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/get_mount_body'
        required: true
      responses:
        '200':
          description: Mount details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inline_response_200_14'
        '400':
          description: Bad Request - Invalid parameters or missing fields.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inline_response_400_10'
        '401':
          description: Unauthorized - The session signature is invalid or expired.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inline_response_401_9'
        '403':
          description: >-
            Forbidden - The client does not have permission to access this
            resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inline_response_403_8'
        '500':
          description: Internal Server Error - An unexpected error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/inline_response_500_9'
components:
  schemas:
    get_mount_body:
      type: object
      properties:
        signature:
          type: string
          description: The session signature obtained from the "Create AUTH-session" call.
          example: session_signature_12345
        kvm_id:
          type: string
          description: >
            The unique identifier of the KVM VPS to retrieve mount details
            for.  

            This value is specific to your VPS.
          example: kvm_123456_789012
        valid_until:
          type: string
          description: >
            The expiration timestamp for the session, obtained from the "Create
            AUTH-session" call.  

            Ensure that the session is valid and has not expired.
          example: '1737476000'
    inline_response_200_14:
      type: object
      properties:
        status:
          type: string
          example: success
        current_iso:
          type: string
          description: The currently mounted ISO file or empty if no ISO is mounted.
          example: empty
    inline_response_400_10:
      type: object
      properties:
        status:
          type: string
          description: Indicates the operation failed due to a bad request.
          example: error
        message:
          type: string
          description: Details about the missing or invalid parameters.
          example: 'Invalid input: ''kvm_id'' is required'
    inline_response_401_9:
      type: object
      properties:
        status:
          type: string
          description: Indicates the operation failed due to an unauthorized request.
          example: error
        message:
          type: string
          description: Explanation of the unauthorized error.
          example: Session signature expired or invalid
    inline_response_403_8:
      type: object
      properties:
        status:
          type: string
          description: Indicates the operation was forbidden.
          example: error
        message:
          type: string
          description: Explanation of the forbidden request.
          example: You do not have permission to access this resource
    inline_response_500_9:
      type: object
      properties:
        status:
          type: string
          description: Indicates the operation failed due to a server error.
          example: error
        message:
          type: string
          description: Explanation of the internal server error.
          example: An unexpected error occurred. Please try again later

````