- A strongly typed api wrapper for the SendClean API.
- Uses in-built https module to make requests to the SendClean API.
- Full Typescript support
npm install sendclean
const { SendClean } = require('sendclean');
const sendclean_client = new SendClean({
token: "YOUR_SENDCLEAN_TOKEN",
owner_id: "YOUR_SENDCLEAN_USERID"
})
sendclean_client.getUserInfo().then((userinfo) => {
console.log(userinfo)
})
- This Project has been licensed under the MIT License