@team-monite/sdk-api
TypeScript icon, indicating that this package has built-in type declarations

2.9.1 • Public • Published

Monite API client for JavaScript

npm version

@team-monite/sdk-api is a library for interacting with the Monite API from JavaScript and TypeScript code.

This library is used internally by Monite UI Widgets to make requests to the Monite API. It can also be used as a standalone API client.

Note: This library is part of a monorepo. See the main README for more information.

Requirements

  • Runtime:
    • Node.js 16 or later.
    • Supported browsers: five latest versions of Chrome, Firefox, Safari, Edge, and Opera.
  • At least 8 GB RAM on each development workstation.
  • A partner account registered with Monite. Follow the Get started with Monite API guide to set up your partner account, get API credentials, and generate an access token.

Installation

npm install @team-monite/sdk-api 
or
```sh
yarn add @team-monite/sdk-api

Usage

The following example demonstrates how to get a list of an entity's counterparts:

import { MoniteSDK } from "@team-monite/sdk-api";

const monite = new MoniteSDK({
  /** Or 'https://api.monite.com/v1' to use Production */
  apiUrl: "https://api.sandbox.monite.com/v1",

  /** Entity whose data you want to access */
  entityId: "ENTITY_ID",

  /** Entity whose data you want to access */
  fetchToken: async () => {
    const response = await fetch(
      "https://api.sandbox.monite.com/v1/auth/token",
      {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          "x-monite-version": "2023-06-04",
        },
        body: JSON.stringify({
          grant_type: "entity_user",
          entity_user_id: "ENTITY_USER_ID",
          client_id: "CLIENT_ID",
          client_secret: "CLIENT_SECRET",
        }),
      }
    );
    return response.json();
  },
});

monite.api.counterparts.getList().then((res) => {
  console.log(`Number of counterparts: ${res.data.length}`);
});

Further information

License

MIT

Dependencies (0)

    Dev Dependencies (16)

    Package Sidebar

    Install

    npm i @team-monite/sdk-api

    Weekly Downloads

    0

    Version

    2.9.1

    License

    MIT

    Unpacked Size

    972 kB

    Total Files

    7

    Last publish

    Collaborators

    • monite-package-publisher
    • nekedos
    • artem_monite
    • m_alex_batalov
    • andrey_tarasov