1.4.3 • Published 1 year ago

@vtfk/p360 v1.4.3

Weekly downloads
124
License
MIT
Repository
github
Last release
1 year ago

Build Status js-standard-style

p360

Node wrapper for Public 360 SIF RPC Web Service from Tieto.

Installation

$ npm install @vtfk/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('@vtfk/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.4.3

1 year ago

1.4.1

2 years ago

1.4.0

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago