Get the application version
GET/version
This method allows to get the application version
Responses
- 200
- 500
Successful retrieval version
- application/json
- Schema
- Example (from schema)
Schema
versionStruct
object
application version structure
major string
major number
minor string
minor number
patch string
patch number
pre-release string
pre-release info
deprecated boolean
deprecated or not
{
"versionStruct": {
"major": "string",
"minor": "string",
"patch": "string",
"pre-release": "string"
},
"deprecated": true
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
code int32
code
message string
message
description string
description
{
"code": 0,
"message": "string",
"description": "string"
}
Loading...