https://github.com/gaurishhs/sendclean
The API Wrapper for SendClean.
https://github.com/gaurishhs/sendclean
Last synced: 3 months ago
JSON representation
The API Wrapper for SendClean.
- Host: GitHub
- URL: https://github.com/gaurishhs/sendclean
- Owner: gaurishhs
- License: mit
- Created: 2022-06-05T10:18:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T13:03:18.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T09:12:03.992Z (5 months ago)
- Language: TypeScript
- Homepage: https://gaurishhs.github.io/SendClean
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
- A strongly typed api wrapper for the [SendClean API](https://sendclean.com).
# Features
- Uses in-built [https module](https://nodejs.org/api/https.html) to make requests to the SendClean API.
- Full Typescript support# Installation
```bash
npm install sendclean
```# Usage
```js
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)
})
```
# License
- This Project has been licensed under the [MIT License](https://opensource.org/licenses/MIT)