Mounts

List all mounted storages.

get

API Key Scope: mounts / index

Authorizations
Responses
200

List of mounted storages.

application/json
get
/mounts
GET /api/v2/mounts HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
200

List of mounted storages.

{
  "mounts": [
    {
      "id": 123,
      "major_minor": "0:189",
      "target": "/mnt/MOUNT_POINTS/folder",
      "source": "//server.local/shared_folder",
      "options": "vers=3.0,rsize=1048576,wsize=1048576",
      "type": "cifs",
      "pool_id": 1,
      "pool_name": "text",
      "nas_id": 1,
      "nas_name": "text",
      "nas_share_id": 1,
      "nas_share_name": "text",
      "cloud_connector_id": 1,
      "cloud_connector_name": "text",
      "cloud_bucket_id": 1,
      "cloud_bucket_name": "text",
      "tape_id": 1,
      "tape_barcode": "text",
      "tape_library_id": 1,
      "tape_library_name": "text",
      "tape_library_serial": "text"
    }
  ]
}

Last updated

Was this helpful?