Skip to content

cryptlex/web-api-client-js

Folders and files

NameName
Last commit message
Last commit date
Dec 7, 2022
Nov 29, 2022
Dec 14, 2022
Nov 29, 2022
Oct 25, 2023
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Oct 25, 2023
Nov 29, 2022
Nov 29, 2022
Nov 29, 2022
Oct 25, 2023
Oct 25, 2023
Nov 29, 2022

Repository files navigation

@cryptlex/web-api-client

latest-npm-version build

The Cryptlex Web API Client library provides access to the Cryptlex Web API from applications written in JavaScript. The library maintains types for supporting TypeScript(=>3.5).

Requirements

Node 14 or higher

Installation

npm install @cryptlex/web-api-client

Usage

The library needs to be configured with the a valid access token. This is done in the CryptlexWebApiClientOptions instantiation.

import { CryptlexWebApiClient, CryptlexWebApiClientOptions } from "@cryptlex/web-api-client";

const ACCESS_TOKEN = "**ACCESS_TOKEN**";
const PRODUCT_ID = "**PRODUCT_ID**";

const clientOptions = new CryptlexWebApiClientOptions(ACCESS_TOKEN);
const client = new CryptlexWebApiClient(clientOptions);

try {
  // Create a license in the product defined by PRODUCT_ID
  const licenseResponse = await client.createLicense({ productId: PRODUCT_ID });
  console.log("Successfully created license: " + JSON.stringify(licenseResponse.data));
} catch (error) {
  console.error(error);
}

Functions

The extent of this library can be seen in the complete list of functions available.