Nasuni Filers API

The Filers API from Nasuni — 30 operation(s) for filers.

Operations 41

GET /filers/ List all Filers
GET /filers/{filer_serial}/ Get a Filer
PATCH /filers/{filer_serial}/ Update a Filer
GET /filers/cifsclients/ Retrieve a list of all Filers, each with a list of CIFS clients connected to it.
GET /filers/{filer_serial}/cifsclients/ Retrieve a Filer with a list of CIFS clients connected to it.
GET /filers/cifslocks/ Retrieve a list of all Filers, each with a list of CIFS file locks that clients have on its shares.
GET /filers/{filer_serial}/cifslocks/ Retrieve a Filer with a list of CIFS file locks that clients have on its shares.
GET /filers/ftpclients/ Retrieve a list of all Filers, each with a list of FTP clients connected to it.
GET /filers/{filer_serial}/ftpclients/ Retrieve a Filer with a list of FTP clients connected to it.
GET /filers/amqp-audit-destinations/ List AMQP Destinations
GET /filers/{filer_serial}/amqp-audit-destinations/ List AMQP Destinations for a Filer
POST /filers/{filer_serial}/amqp-audit-destinations/ Create an AMQP Destination
GET /filers/{filer_serial}/amqp-audit-destinations/{amqp_destination_name} Get a single AMQP destination
DELETE /filers/{filer_serial}/amqp-audit-destinations/{amqp_destination_name} Delete an AMQP destination
PATCH /filers/{filer_serial}/amqp-audit-destinations/{amqp_destination_name} Update an AMQP destination
GET /filers/{filer_serial}/cifsclients/{cifs_client_id} Get CIFS client
GET /filers/cifsclients/locks/ List CIFS file locks
GET /filers/{filer_serial}/cifsclients/locks/ List CIFS file locks for a Filer
GET /filers/{filer_serial}/cifsclients/{cifs_client_id}/locks/ List CIFS file locks for a client
GET /filers/{filer_serial}/ftpclients/{ftp_client_id} Get FTP client
GET /filers/encryption-keys/ List encryption keys
GET /filers/{filer_serial}/encryption-keys/ List encryption keys for a Filer
POST /filers/{filer_serial}/encryption-keys/ Upload encryption keys for a Filer
GET /filers/{filer_serial}/encryption-keys/{encryption_key_id}/ Get a Filer encryption key
GET /filers/health/ List health status for all Filers
GET /filers/{filer_serial}/health/ List health status for a Filer
GET /filers/blocked-clients/ List blocked clients across all Filers
GET /filers/{filer_serial}/blocked-clients/ List blocked clients on a Filer
POST /filers/{filer_serial}/blocked-clients/ Block a client IP address on a Filer
GET /filers/{filer_serial}/blocked-clients/{blocked_ip}/ Get specific blocked client on specific Filer
DELETE /filers/{filer_serial}/blocked-clients/{blocked_ip}/ Unblock a client IP address on a Filer
GET /filers/blocked-sources/ip-addresses/ List blocked IP addresses across all Filers
GET /filers/blocked-sources/usernames/ List blocked usernames across all Filers
GET /filers/{filer_serial}/blocked-sources/ip-addresses/ List blocked IP addresses on a Filer
GET /filers/{filer_serial}/blocked-sources/usernames/ List blocked usernames on a Filer
GET /filers/{filer_serial}/blocked-sources/ip-addresses/{blocked_ip}/ Get specific blocked IP address on specific Filer
PUT /filers/{filer_serial}/blocked-sources/ip-addresses/{blocked_ip}/ Block an IP address on a Filer
DELETE /filers/{filer_serial}/blocked-sources/ip-addresses/{blocked_ip}/ Unblock an IP address on a Filer
GET /filers/{filer_serial}/blocked-sources/usernames/{blocked_username}/ Get specific blocked username on specific Filer
PUT /filers/{filer_serial}/blocked-sources/usernames/{blocked_username}/ Block a username on a Filer
DELETE /filers/{filer_serial}/blocked-sources/usernames/{blocked_username}/ Unblock a username on a Filer

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/nasuni-filers-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 email required.

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

OpenAPI Specification

nasuni-filers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nasuni Filers API
  version: '1.0'
  description: 'Operations tagged Filers across 3 of this provider''s published API definitions: nasuni-nmc-v1-0-openapi.yml, nasuni-nmc-v1-1-openapi.yml, nasuni-nmc-v1-2-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://hostname/api/v1
- url: https://hostname/api/v1.1
- url: https://hostname/api/v1.2
security:
- AuthToken: []
tags:
- name: Filers
paths:
  /filers/:
    get:
      tags:
      - Filers
      summary: List all Filers
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - Return status and configuration for all managed Filers.
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/Filer'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    description: The reason why the agent couldn't be authorized.
                    enum:
                    - Authentication credentials were not provided.
                    - Invalid token.
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/{filer_serial}/:
    get:
      tags:
      - Filers
      summary: Get a Filer
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Return status and configuration for the specified managed Filer.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Filer'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    patch:
      tags:
      - Filers
      summary: Update a Filer
      description: Update the Filer's settings with the given body.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Filer_2'
        required: true
      responses:
        '202':
          description: Accepted - Filer has been sent a message
          headers:
            Location:
              description: URL to the associated message
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '405':
          description: Method not allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codegen-request-body-name: body
    servers:
    - url: https://hostname/api/v1
  /filers/cifsclients/:
    get:
      tags:
      - Filers
      summary: Retrieve a list of all Filers, each with a list of CIFS clients connected to it.
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - Return a list of Filers with lists of their CIFS clients
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerCIFSClients'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/{filer_serial}/cifsclients/:
    get:
      tags:
      - Filers
      summary: Retrieve a Filer with a list of CIFS clients connected to it.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Return the specified Filer with a list of its CIFS clients
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilerCIFSClients'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/cifslocks/:
    get:
      tags:
      - Filers
      summary: Retrieve a list of all Filers, each with a list of CIFS file locks that clients have on its shares.
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - Return a list of Filers with lists of their CIFS file locks
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerCIFSLocks'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/{filer_serial}/cifslocks/:
    get:
      tags:
      - Filers
      summary: Retrieve a Filer with a list of CIFS file locks that clients have on its shares.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Return the specified Filer with a list of its CIFS file locks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilerCIFSLocks'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/ftpclients/:
    get:
      tags:
      - Filers
      summary: Retrieve a list of all Filers, each with a list of FTP clients connected to it.
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - Return a list of Filers with lists of their FTP clients
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerFTPClients'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/{filer_serial}/ftpclients/:
    get:
      tags:
      - Filers
      summary: Retrieve a Filer with a list of FTP clients connected to it.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Return the specified Filer with a list of its FTP clients
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilerFTPClients'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
    servers:
    - url: https://hostname/api/v1
  /filers/amqp-audit-destinations/:
    get:
      tags:
      - Filers
      summary: List AMQP Destinations
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - List of all AMQP Destination across all Filers
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/AMQPAuditDestination'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/amqp-audit-destinations/:
    get:
      tags:
      - Filers
      summary: List AMQP Destinations for a Filer
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - List of AMQP Destinations on a specific Filer
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/AMQPAuditDestination'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    post:
      tags:
      - Filers
      summary: Create an AMQP Destination
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - type: object
              - $ref: '#/components/schemas/AMQPAuditDestination'
        required: true
      responses:
        '202':
          description: Accepted - Filer has been sent a message
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codegen-request-body-name: body
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/amqp-audit-destinations/{amqp_destination_name}:
    get:
      tags:
      - Filers
      summary: Get a single AMQP destination
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: amqp_destination_name
        in: path
        description: AMQP Destination name (URL-encoded)
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Information about the specified AMQP Destination
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AMQPAuditDestination'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    delete:
      tags:
      - Filers
      summary: Delete an AMQP destination
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: amqp_destination_name
        in: path
        description: AMQP Destination name (URL-encoded)
        required: true
        schema:
          type: string
      responses:
        '202':
          description: Accepted - Filer has been sent a message
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    patch:
      tags:
      - Filers
      summary: Update an AMQP destination
      description: Only available with Filers on version 8.5 and higher.
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: amqp_destination_name
        in: path
        description: AMQP Destination name (URL-encoded)
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMQPAuditDestination'
        required: true
      responses:
        '202':
          description: Accepted - Filer has been sent a message
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codegen-request-body-name: body
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/cifsclients/{cifs_client_id}:
    get:
      tags:
      - Filers
      summary: Get CIFS client
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: cifs_client_id
        in: path
        description: CIFS client object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Information about the specified CIFS client
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilerCIFSClient'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/cifsclients/locks/:
    get:
      tags:
      - Filers
      summary: List CIFS file locks
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - List of all CIFS file locks across all Filers
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerCIFSLock'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/cifsclients/locks/:
    get:
      tags:
      - Filers
      summary: List CIFS file locks for a Filer
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - List of CIFS file locks held by clients of the specified Filer
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerCIFSLock'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/cifsclients/{cifs_client_id}/locks/:
    get:
      tags:
      - Filers
      summary: List CIFS file locks for a client
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: cifs_client_id
        in: path
        description: CIFS client object identifier
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: OK - List of CIFS file locks held by the specified client
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/FilerCIFSLock'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/ftpclients/{ftp_client_id}:
    get:
      tags:
      - Filers
      summary: Get FTP client
      parameters:
      - name: filer_serial
        in: path
        description: Filer object identifier
        required: true
        schema:
          type: string
      - name: ftp_client_id
        in: path
        description: FTP client object identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK - Description of the specified FTP client
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilerFTPClient'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/encryption-keys/:
    get:
      tags:
      - Filers
      summary: List encryption keys
      parameters:
      - name: limit
        in: query
        description: The maximum number of objects to return
        schema:
          maximum: 100
          minimum: 1
          type: integer
          default: 50
      - name: offset
        in: query
        description: The index of the first object to return
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    items:
                      type: array
                      items:
                        $ref: '#/components/schemas/EncryptionKey'
                - $ref: '#/components/schemas/Paging'
        '401':
          description: Authentication failure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Permission denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Request throttled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
    servers:
    - url: https://hostname/api/v1.1
  /filers/{filer_serial}/encryption-

# --- truncated at 32 KB (160 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/nasuni/refs/heads/main/openapi/nasuni-filers-api-openapi.yml