Contents

GET /config#

Return the protocol version and configuration information about the bank. This specification corresponds to current protocol being version v0.

Response:

200 OK:

Response is a Config.

Details:

interface Config {
  // Name of the API.
  name: "taler-ebisync";

  // libtool-style representation of the Bank protocol version, see
  // https://www.gnu.org/software/libtool/manual/html_node/Versioning.html#Versioning
  // The format is "current:revision:age".
  version: string;

  // URN of the implementation (needed to interpret 'revision' in version).
  implementation: string;

  // SPA display version to be used in user interfaces.
  spa_version: string;
}