1.5.1 • Published 1 month ago

@serussi/p360 v1.5.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Build Status js-standard-style

p360

Node wrapper for Public 360 SIF RPC Web Service from Tieto. Updated version of @serussi/p360.

Installation

$ npm install @serussi/p360 --save

SIF documentation

SI Integration Framework (SIF) is public 360s RPC-webservice.

For a full list of calls and callbacks see the documentation here

Usage

(async () => {
  const p360 = require('@serussi/p360')

  const options = {
    host: 'server.domain.no',
    authkey: 'your-rpc-auth-key'
  }
  try {
    const client = p360(options)
    const { ContactService } = client
    const result  = await contactService.GetContactPersons({ parameter: { Name: 'Maccyber%' } })
    console.log(JSON.stringify(result, null, 2))
  } catch (error) {
    console.error(error)
  }
})()

License

MIT

1.5.1

1 month ago

1.5.0

10 months ago

1.4.3

12 months ago