celitech-sdk-typescript
TypeScript icon, indicating that this package has built-in type declarations

1.1.51 • Public • Published

Typescript/Javascript library for interacting with the Celitech API

CI NPM version

API Reference

For a complete API reference with code examples for each endpoint in different languages - Make sure to visit https://docs.celitech.net

Installation

npm install celitech-sdk-typescript
# or
yarn add celitech-sdk-typescript

Setup

The package needs to be configured with your account's clientId and clientSecret, which are available in the Celitech Dashboard.

import { Celitech } from "celitech-sdk-typescript";

const celitech = new Celitech({
  clientId: "CLIENT_ID",
  clientSecret: "CLIENT_SECRET",
  environment: "PRODUCTION",
});
Option Required Default Description
clientId true The Client ID to be used for OAUTH 2.0 - available on your Celitech dashboard
clientSecret true The Client Secret to be used for OAUTH 2.0 - available on your Celitech dashboard

Basic example

celitech.destinations
  .list()
  .then((response) => {
    console.log(response);
  })
  .catch((error) => {
    console.log(error);
  });

Or using ES modules and async/await:

const response = await celitech.destinations.list();

console.log(response);

Readme

Keywords

none

Package Sidebar

Install

npm i celitech-sdk-typescript

Weekly Downloads

8

Version

1.1.51

License

ISC

Unpacked Size

30.7 kB

Total Files

24

Last publish

Collaborators

  • azgheib