update247-client
v1.0.1
Published
Update247 Client Library
Readme
Update247 API - JS Client Library
A client library for Update247 XML API
Install
npm install https://gitlab.com/kevb/update247-client.gitUsage
const update247 = require('update247-client');
const u247_client = new update247("my_pms_id", "my_pms_password");
u247_client.getHotels().then(function(response){
console.log(response);
}).catch(function(err){
//handle error
});