1.0.1 • Published 7 years ago

node-expedia-property-api v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

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);
})