Get server information
GET
server-info
Get some metadata information about server such as product version, etc.
Resource Information
Method and URI | GET /AutodeskDM/Services/api/vault/v2/server-info |
Authentication Context | No security required |
Required OAuth Scopes | No scopes required |
Data Format | JSON |
Response
HTTP Status Code Summary
200 OK | The request succeeded. The response contains the server information. |
403 Forbidden | Unauthorized |
Response
Body Structure (200)
name string | The internal product name. For backward compatibility, this value contains the original product name, which may not be the same as the current product name. |
productVersion string | The product version currently installed. ex:30.0.91.0 |
Example
This example illustrates the retrieval of Vault server information.
Note: {VaultServerAddress}
is used as a placeholder in the example(s) and could represent one of the following:
- Vault Server IP address or hostname. Ex: http://10.41.110.49.
- Vault Gateway URL if gateway is configured. Ex: https://test.vg.autodesk.com.
Request
curl -v '{VaultServerAddress}/AutodeskDM/Services/api/vault/v2/server-info' \
-X 'GET' \
-H 'Accept: application/json'
Response
{
"name": "Vault Professional Server",
"productVersion": "30.2.64.0"
}