/scalemgmt/v3/version: GET
Lists the version of the scaleadmd service.
Availability
Available on all IBM Storage Scale editions.
Description
The GET version request lists the version of the scaleadmd service.
Request URL
https://<IP address or host name of API server>:<port>/scalemgmt/v3/version
Request headers
Accept: application/json
Parameters
The following parameters can be used in the request URL to customize the
request:
Parameter name | Description and applicable keywords | Required/optional |
---|---|---|
X-StorageScaleDomain | Specifies the domain to authorize for the request. The default value is StorageScaleDomain. | Optional. |
Request data
No request data.
Response data
- 200: A successful response.
{ "build_date": "string", "commit": "string", "name": "string", "version": "string" }
- default: An unexpected error response.
{ "code": 0, "details": [ { "@type": "string", "additionalProp1": "string", "additionalProp2": "string", "additionalProp3": "string" } ], "message": "string" }
Examples
The following example lists the version of the scaleadmd service.
Request data:
curl -X 'GET' 'https://localhost:8001/scalemgmt/v3/version' -H 'accept: application/json' --config config -k
Response
data: {
"name": "scaleadmd",
"version": "5.2.3-0",
"build_date": "Built on Mar 31 2025 at 20:04:57",
"commit": "b1913f4e14a"
}