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. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Identifier | query | VersionIdentifier | Yes | The identifier for your application. |
Version | query | string | Yes | The version you are running and you want to check |
Name | Value | |
---|---|---|
BokaMeraiOS | 1 | |
BokaMeraAdminiOS | 2 | |
BokaMeraAndroid | 3 | |
BokaMeraAdminAndroid | 4 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CurrentVersion | form | string | No | The latest version number |
YourVersion | form | string | No | Your version number |
Message | form | string | No | Any compatible error message |
Compatible | form | bool | No | If your version is compatible with the current version |
BlockingChanges | form | bool | No | If the changes are blocking for use and you need to upgrade to later version |
ResponseStatus | form | ResponseStatus | No |
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 } } }