Retrieve the software version
GEThttp://127.0.0.1:8080/version
Get the current version of the software running on the system.
Responses
- 400
A common JSON error response.
- application/json
- Schema
- Example (from schema)
Schema
error string
A description of the error that occurred.
details string
Additional details about the error.
code integer
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'http://127.0.0.1:8080/version'
ResponseClear