Authentication
The Roperty API uses API keys to authenticate requests. You can view and manage your API keys in your Roperty Settings.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail. Remember that you need to sign each request using the given time-restrained Bearer Token
.
Endpoints​
POST /v1/authenticate
Code Example​
- NodeJS
POST - https://api.roperty.org/api/v1/authenticate
var axios = require('axios');
var qs = require('qs');
var data = qs.stringify({
'secret_key': 'MY_SECRET_KEY',
'publish_key': 'MY_PUBLISH_KEY'
});
var config = {
method: 'post',
url: 'https://api.roperty.org/api/v1/authenticate',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});