@trunkrs/spryng-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

Spryng SDK Javascript

this SDK is written in TypeScript and resembles the official Spryng PHP SDK.

Installation

1. install via your favorite package manager

npm install @trunkrs/spryng-sdk --save

yarn add @trunkrs/spryng-sdk

2. add a http client

this project has no hard outside dependencies. However it will need a Http client. The easiest way is just to install Axios:

yarn add axios

Axios will work with the SDK out of the box. If you would rather write your own implementation, use the interface described in http/HttpClientInterface.ts.

3. import into your project

import Spryng from '@trunkrs/spryng-sdk'
const spryng = new Spryng('YOUR_API_KEY')

If you are using a custom Http client (not axios) please provide this as the second parameter on initializing Spryng:

import Spryng from '@trunkrs/spryng-sdk'
const spryng = new Spryng('YOUR_API_KEY', httpClient)

Sending messages

To send a message create a new Message and run create on the message client

import Spryng, {Message, Recipient} from '@trunkrs/spryng-sdk'

const spryng = new Spryng('YOUR_API_KEY')
const message = new Message()
message.body = 'My message'
message.recipients = [
    new Recipient('31612344567'),
    new Recipient('31698765432')
]
message.originator = 'My Company'

const response = await spryng.message.create(message)
return message.id

Getting info about a message

import Spryng, {Message} from 'spryng-sdk'

const spryng = new Spryng('YOUR_API_KEY')

const response = await spryng.message.show('MESSAGE_UUID')
return `the body of the message is ${response.body}`

List messages

import Spryng, {Message} from 'spryng-sdk'

const spryng = new Spryng('YOUR_API_KEY')

const response = await spryng.message.list()
response.data.forEach(message => {
 console.log(message.body)
})

Get your balance

import Spryng, {Message} from 'spryng-sdk'

const spryng = new Spryng('YOUR_API_KEY')

const response = await spryng.balance.get()
return `your balance is ${response.amount}`

Readme

Keywords

Package Sidebar

Install

npm i @trunkrs/spryng-sdk

Weekly Downloads

4

Version

1.0.6

License

MIT

Unpacked Size

60.7 kB

Total Files

38

Last publish

Collaborators

  • hidde.trunkrs
  • trunkrs-public