Quick Start
This guide was created to help you get started as quickly as possible using the MNEE Typescript SDK.
1. Get your API keys
2. Install the Typescript SDK
npm i @mnee/ts-sdk3. Configure the SDK
import Mnee from '@mnee/ts-sdk';
const config = {
environment: 'sandbox', // or 'production'
apiKey: 'your-api-key'
};
const mnee = new Mnee(config);
mnee.config().then(mneeConfig => {
console.log('MNEE Configuration:', mneeConfig);
});
4. Send MNEE
Last updated