# oneapi

> Infobip oneapi wrapper

Latest version **0.0.2** (published 2014-10-17) · 0 weekly downloads

## Install

```sh
npm install oneapi
pnpm add oneapi
yarn add oneapi
bun add oneapi
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2014-10-17 |
| First published | 2014-10-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jonas Liljestrand |
| Maintainers | jonas.liljestrand |
| Keywords | infobip, oneapi, sms |

## Links

- npm: https://www.npmjs.com/package/oneapi
- Repository: https://github.com/jonlil/oneapi
- Homepage: http://github.com/jonlil/oneapi
- Issues: https://github.com/jonlil/oneapi/issues/new
- npm.io page: https://npm.io/package/oneapi

## Dependencies (2)

- [q](https://npm.io/package/q.md) ^1.0.1
- [request](https://npm.io/package/request.md) ^2.45.0

## Recent versions

- 0.0.2 (latest) — 2014-10-17
- 0.0.1 — 2014-10-16

## README

oneapi
======

Infobip oneapi wrapper


```javascript

var OneAPI = require('oneapi');

var oneapi = new OneAPI({
  'username': 'yourusername',
  'password': 'yourpassword'
});

oneapi.sendSMS({
    'senderName': '',
    'senderAddress': '',
    'message': 'testing'.toString('utf8'),
    'dataCoding': 8,
    'address': '+46730000000'
})
.then(function(result) {
    /** if you want to get deliveryInfo */
    return oneapi.getDeliveryInfo(result.clientCorrelator);
})
.then(function(result) {})
.catch(function(err) {});

```

---
_Source: https://npm.io/package/oneapi · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
