sabio-typescript-client
v1.0.48
Published
This is a Typescript client for SABIO Knowledge API
Downloads
17
Maintainers
Readme
README
This is a first small Client Library for SABIO Knowledge using typescript. Typescript 3.8.3 or higher is required if you plan to use this library.
How to use it
var config = new ApiConfiguration();
config.endpoint = 'https://yoursystem.sabio.de/sabio-web/services';
config.user = '<username>';
config.password = '<password>';
// also possible to use config.apiKey instead of username and password.
var client = new SabioClient(config);
//expect(client).toBeDefined();
const result = await client.authenticationApi.login(config);