Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Latest commit

 

History

History
56 lines (35 loc) · 1.67 KB

README.md

File metadata and controls

56 lines (35 loc) · 1.67 KB

@skriptfabrik/js-api-client

NPM Version NPM Downloads Continuous Integration

skriptfabrik API Client for JavaScript

Author

skriptfabrik <info@skriptfabrik.com>

For more information, please visit https://www.skriptfabrik.com/api.

Installation

Requirements

NPM

Install NPM

npm install @skriptfabrik/js-api-client@2.1.0 --save

Usage

Please follow the installation instructions and then implement the following code in your project:

import { AdminApi, AuthorizationApi, Configuration } from '@skriptfabrik/js-api-client';

const authorization = new AuthorizationApi();

const configuration = new Configuration({
  accessToken: authorization.createAccessToken({
    username: '<username>',
    password: '<password>'
  }),
});

const admin = new AdminApi(configuration);

admin.getAdminEntryPoint();

Credits

This JavaScript package is automatically generated by the OpenAPI Generator project:

  • API version: 2.1.0+e417cb8
  • Package version: 2.1.0
  • Build date: 2023-03-03T13:15:45.313984Z[Etc/UTC]