3.0.1 • Published 7 years ago

rex-property v3.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

REX Property API

Interface with REX Software's property management API.

Usage (as of 2.0.0)

Services and methods map against the REX API directly and respond using Promises.

You will need to acquire a REX account before using the API.

For example:

const Rex = require('rex-property').connect(process.env.REX_EMAIL, process.env.REX_PASSWORD);

...and then something like:

Rex.Properties.search().then((results) => {
    console.log(`${results.total} Total`);
    console.log(results.rows);
}).catch(e => console.log(e));

For details, check out the actual API docs

Development

You need to get an account for the REX test environment and then enter the details into .env (check the example .env.example).

3.0.1

7 years ago

3.0.0

8 years ago

2.0.0

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago