An open API service indexing awesome lists of open source software.

https://github.com/ivanvs/rentals-united-client

Typescript client for Rentals United SOAP API
https://github.com/ivanvs/rentals-united-client

Last synced: 2 days ago
JSON representation

Typescript client for Rentals United SOAP API

Awesome Lists containing this project

README

          

# rentals-united-client

[![NPM](https://nodei.co/npm/rentals-united-client?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/rentals-united-client/)
[![rentals-united-client on npm](https://img.shields.io/npm/v/rentals-united-client.svg)](https://www.npmjs.com/package/rentals-united-client)
![License](https://img.shields.io/badge/license-MIT-blue.svg)

![RENTALS UNITED](https://new.rentalsunited.com/images/logo_new.svg)

Package for Rentals United SOAP API

# Examples

_Basic usage:_

```
// Import to your project
const { RUClient } = require('rentals-united-client');

// create client
const client = new RUClient(RUUsername, RUPassword);

// Basic call to Rentals united
client.listLanguages().then(res => console.log(res))
.catch(err => console.log(err))

```

**Rentals United documentation**

https://developer.rentalsunited.com/#api-reference

**Author: Ivan Vasiljevic**