1.1.37 • Published 1 month ago

@commonninja/node-sdk v1.1.37

Weekly downloads
-
License
ISC
Repository
github
Last release
1 month ago

@commonninja/node-sdk

Release

Installation

// NPM
npm i @commonninja/node-sdk

// Yarn
yarn add @commonninja/node-sdk

Usage

import { CommonNinja } from '@commonninja/node-sdk';

const client = new CommonNinja({
  appId: process.env.COMMONNINJA_APP_ID,
  appSecret: process.env.COMMONNINJA_APP_SECRET,
  accessToken: req.query.token,
  env: CommonNinja.envs.production,
});

// Get shop products, filter by category
const { data, success, message } = await client.ecommerce.getProducts({
  category: '1',
});

// Get shop orders
const { data, success, message } = await client.ecommerce.getOrders();

// Get shop customers with pagination parameters
const { data, success, message } = await client.ecommerce.getCustomers({
  limit: 5,
  page: 1,
});

// Get user details
const { data, success, message } = await client.user.getDetails();

// Get connect to platform screen url
const connectUrl = client.auth.getConnectUrl();

// Get Shopify authentication url
const redirectUrl = client.auth.getAuthenticationUrl('shopify');

// Validate an incoming webhook message from Common Ninja
client.webhooks.validateWebhook(req);

Learn more about the different APIs in our official docs.

1.1.37

1 month ago

1.1.34

1 year ago

1.1.33

1 year ago

1.1.32

1 year ago

1.1.36

1 year ago

1.1.35

1 year ago

1.1.31

1 year ago

1.1.29

2 years ago

1.1.30

2 years ago

1.1.28

2 years ago

1.1.23

2 years ago

1.1.27

2 years ago

1.1.26

2 years ago

1.1.25

2 years ago

1.1.24

2 years ago

1.1.19

2 years ago

1.1.18

2 years ago

1.1.17

2 years ago

1.1.22

2 years ago

1.1.21

2 years ago

1.1.20

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.12

2 years ago

1.1.11

2 years ago

1.1.10

2 years ago

1.1.16

2 years ago

1.1.15

2 years ago

1.1.14

2 years ago

1.1.13

2 years ago

1.0.11

2 years ago

1.0.12

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago