GET | /version/compability | Get information about if your current version is compability with the api verison | Returns information about which version of the API is currently running and when it was built. |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports BokaMera.API.ServiceModel.Dtos
Imports BokaMera.API.ServiceModel.Enums
Namespace Global
Namespace BokaMera.API.ServiceModel.Dtos
Public Partial Class ApiVersionCompabilityQuery
'''<Summary>
'''The identifier for your application.
'''</Summary>
<ApiMember(Description:="The identifier for your application.", IsRequired:=true, ParameterType:="query")>
Public Overridable Property Identifier As VersionIdentifier
'''<Summary>
'''The version you are running and you want to check
'''</Summary>
<ApiMember(Description:="The version you are running and you want to check", IsRequired:=true, ParameterType:="query")>
Public Overridable Property Version As String
End Class
Public Partial Class ApiVersionCompabilityQueryResponse
'''<Summary>
'''The latest version number
'''</Summary>
Public Overridable Property CurrentVersion As String
'''<Summary>
'''Your version number
'''</Summary>
Public Overridable Property YourVersion As String
'''<Summary>
'''Any compatible error message
'''</Summary>
Public Overridable Property Message As String
'''<Summary>
'''If your version is compatible with the current version
'''</Summary>
Public Overridable Property Compatible As Boolean
'''<Summary>
'''If the changes are blocking for use and you need to upgrade to later version
'''</Summary>
Public Overridable Property BlockingChanges As Boolean
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
Namespace BokaMera.API.ServiceModel.Enums
Public Enum VersionIdentifier
BokaMeraiOS = 1
BokaMeraAdminiOS = 2
BokaMeraAndroid = 3
BokaMeraAdminAndroid = 4
End Enum
End Namespace
End Namespace
VB.NET ApiVersionCompabilityQuery DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /version/compability HTTP/1.1 Host: api.bokamera.se Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { CurrentVersion: String, YourVersion: String, Message: String, Compatible: False, BlockingChanges: False, ResponseStatus: { ErrorCode: String, Message: String, StackTrace: String, Errors: [ { ErrorCode: String, FieldName: String, Message: String, Meta: { String: String } } ], Meta: { String: String } } }