1.2.1 • Published 2 years ago

@phenofic/sdk v1.2.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

@phenofic/sdk

Installation & Usage

npm install @phenofic/sdk

Usage:

import { * as phenofic } from '@phenofic/sdk';

const phenoficClientId = process.env.PHENOFIC_CLIENT_ID;
const phenoficApiKey = process.env.PHENOFIC_API_KEY;

const fetchTemplates = async () => {
  const response = await phenofic.getTemplates({
    clientId: phenoficClientId,
    apiKey: phenoficApiKey,
  });

  console.log(response);
};