GET | /version | Get information about this API's version and build | Returns information about which version of the API is currently running and when it was built. |
---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class ApiVersionQuery
{
}
open class ApiVersionQueryResponse
{
/**
* Timestamp when this API was built
*/
var BuildTime:Date? = null
/**
* The revision id from which the API was built
*/
var Sha:String? = null
/**
* Full version information regarding the current running assemblies of the api
*/
var InformationalVersion:String? = null
/**
* The semantic version number of the current running api version, see www.semver.org for more information
*/
var SemVer:String? = null
var ResponseStatus:ResponseStatus? = null
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /version HTTP/1.1 Host: api.bokamera.se Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"Sha":"String","InformationalVersion":"String","SemVer":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}