node-expedia-property-api
v1.0.1
Published
Node wrapper for Expedia Property API https://expediaconnectivity.com/apis/product-management/property-api/api-definition.html
Downloads
10
Maintainers
Readme
node-expedia-property-api
Features
- Onboard property
- Fetch property onboarding status
Installing
Using npm:
$ npm install node-expedia-property-api
Example
Fetch property onboarding status
const ExpediaApi = require('node-expedia-property-api');
let eapi = new ExpediaApi({
username: 'TEST',
password: 'test',
account: 'TEST_PARTNER',
test: true
});
eapi.getPropertyStatus(123123).then(response=>{
console.log(response.data);
})