VAST Data openfilehandles API

The openfilehandles API from VAST Data — 2 operation(s) for openfilehandles.

Operations 2

GET /openfilehandles/ Get all open files handles. #
GET /openfilehandles/{id}/ Return details of an open file handle. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/vastdata-openfilehandles-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vastdata-openfilehandles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Openfilehandles API
  version: '1.0'
security:
- ApiToken: []
tags:
- name: openfilehandles
paths:
  /openfilehandles/:
    get:
      description: This endpoint lists open files handles.
      operationId: openfilehandles_list
      parameters:
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/OpenFileIdQP'
      - description: Filter by client IP prefix
        in: query
        name: client_ip__startswith
        schema:
          type: string
      - description: Filter by CIDR subnet
        in: query
        name: client_ip_subnet
        schema:
          type: string
      - description: Filter by lock status
        in: query
        name: has_locks
        schema:
          type: boolean
      - description: Filter by lease status
        in: query
        name: has_lease
        schema:
          type: boolean
      - description: Filter by username substring
        in: query
        name: username__icontains
        schema:
          type: string
      - description: Filter by protocol
        in: query
        name: protocol
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/OpenFileHandle'
                title: Open Files
                type: array
          description: open files handlesinformation
      summary: Get all open files handles.
      tags:
      - openfilehandles
  /openfilehandles/{id}/:
    get:
      description: This endpoint returns information about a specific open file handle.
      operationId: openfilehandles_read
      parameters:
      - $ref: '#/components/parameters/PathObjectId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenFileHandle'
          description: ''
      summary: Return details of an open file handle.
      tags:
      - openfilehandles
components:
  parameters:
    PageSize:
      in: query
      name: page_size
      schema:
        minimum: 1
        type: integer
    Page:
      in: query
      name: page
      schema:
        minimum: 1
        type: integer
    OpenFileIdQP:
      description: Open File id to filter by.
      in: query
      name: open_file__id
      schema:
        minimum: 1
        type: integer
    PathObjectId:
      description: Object ID specified in the path
      in: path
      name: id
      required: true
      schema:
        type: string
  schemas:
    OpenFileHandle:
      properties:
        access_mask:
          description: Access mask
          type: string
        client_ip:
          description: Client IP
          type: string
        has_lease:
          description: Whether the handle has a lease
          type: boolean
        has_locks:
          description: Whether the open file handle has locks
          type: boolean
        id:
          type: integer
          x-cli-header: ID
        open_file_id:
          description: Open file ID
          type: integer
        open_file_path:
          description: File's path
          type: string
        protocol:
          description: Protocol type
          enum:
          - NFS3
          - MOUNT
          - NLM
          - NFS_ACL
          - NSM
          - NFS4
          - S3
          - SMB
          - RQUOTAD
          - COUNT
          type: string
        session_id:
          description: Session ID hex
          type: string
        share_access:
          description: Share access
          type: string
        tenant_id:
          description: Tenant ID
          type: integer
        unique_id:
          description: Unique ID hex
          type: string
        username:
          description: Username
          type: string
      type: object
      x-cli-pagination: true
  securitySchemes:
    ApiToken:
      description: Send current valid API token in an Authorization header with format Api-Token <token>.
      in: header
      name: ApiToken
      type: apiKey
    basicAuth:
      description: Basic authentication using VMS user name and password
      scheme: basic
      type: http