Getting the Application Version
- 10 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Getting the Application Version
- Updated on 10 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Java SDK
To download the full code sample see our Code Share site.
You can retrieve the OneSpan Sign application version by using the SystemService:
String applicationVersion = eslClient.getSystemService().getApplicationVersion();
Results
Here is an example of what you can expect to see once you have run your code.
.NET SDK
To download the full code sample see our Code Share site.
You can retrieve the OneSpan Sign application version by using the SystemService:
string applicationVersion = eslClient.SystemService.GetApplicationVersion();
Results
Here is an example of what you can expect to see once you have run your code.
REST API
To download the full code sample see our Code Share site.
You can retrieve the OneSpan Sign application version by making the following request:
HTTP Request
GET /api/sysinfo
HTTP Headers
Accept: application/json
Content-Type: application/json
Authorization: Basic api_key
Response Payload
{
"schema": "16.11.3",
"version": "16.11.4",
"timestamp": "2017-11-01 15:00+0000"
}
Was this article helpful?