Version

Retrieve application version.

Retrieve which version this application server is currently running.

GEThttps://api.tradeaware.live-eo.com/version
Response

Version information about the application

Body
gitCommitSha*string

Git commit sha of the currently deployed version

Example: "b6f4598bd465a397190ceb2ba4d1be5d7f0a9621"
Request
const response = await fetch('https://api.tradeaware.live-eo.com/version', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "gitCommitSha": "b6f4598bd465a397190ceb2ba4d1be5d7f0a9621"
}

Last updated