Contents

GET /config#

Return the protocol version and configuration information about the bank.

Response:

200 OK:

The exchange responds with a AccountDirectoryConfig object. This request should virtually always be successful.

Details:

interface AccountDirectoryConfig {
  // Name of the API.
  name: "taler-bank-account-directory";

  // 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;
}