/scalemgmt/v3/nodes/{node}/diagnostics/version: GET

Lists mmfsd version of the node.

Availability

Available on all IBM Storage Scale editions.

Description

The GET nodes/{node}/diagnostics/version request lists the mmfsd version of the node.

Request URL

https://<IP address or host name of API server>:<port>/scalemgmt/v3/nodes/{node}/diagnostics/version
where
nodes/{node}/diagnostics/version
Specifies the node as the resource of the GET call.

Request headers

Accept: application/json

Parameters

The following parameters can be used in the request URL to customize the request:
Table 1. List of parameters
Parameter name Description and applicable keywords Required/optional
node The name of the node. Required.
X-StorageScaleDomain The domain to be authorized against for the request. The default value is StorageScaleDomain. Optional.

Request data

No request data.

Response data

  • 200: A successful response.
    {
      "build_date": "string",
      "build_time": "string",
      "launch_time": "2024-10-28T05:11:58.652Z",
      "mmfsd_build": "string",
      "process_id": 0
    }
  • default: An unexpected error response.
    {
      "code": 0,
      "details": [
        {
          "@type": "string",
          "additionalProp1": "string",
          "additionalProp2": "string",
          "additionalProp3": "string"
        }
      ],
      "message": "string"
    }

Examples

The following example lists the mmfsd version of the testnode-2276-1 node:

Request data:
curl -X 'GET' \
  'https://9.XX.XXX.226:46443/scalemgmt/v3/nodes/testnode-2276-1/diagnostics/version' \
  -H 'accept: application/json' \
Response data:
{
  "build_date": "Mar 26 2025",
  "build_time": "16:16:00",
  "launch_time": "{seconds:1743064900}",
  "mmfsd_build": "5.2.3.0 250326.103342",
  "process_id": 33944
}