Version API

Purpose

This API allows the JS web app to interrogate the container to find version support information.  One possible use case is to get ssf API version supported so that in future it is possible to deprecate older containers that do not support latest version of API.  Another possible use case is for logging purposes to help support track down issues.

Version API

ssf.getVersionInfo();

returns a Promise which if successful resolves with object: 

{
  containerIdentifier: String,
  containerVer: String,
  apiVer: String
}

where containerIdentifier is string providing name of container.
where containerVer is string version for the given container.
where apiVer is the string version for the ssf API the given container supports.

For example:

{
  containerIdentifier: "SymphonyElectron",
  containerVer: "1.0.1",
  apiVer: "1.0.0"
}

Need help? Email help@finos.org we'll get back to you.

Content on this page is licensed under the CC BY 4.0 license.
Code on this page is licensed under the Apache 2.0 license.