Comment on page
Quick Start
Your API requests are authenticated using your Okendo User ID and an API Key. You can get these details from the integration settings section of the Okendo app.
To make your first request, send an authenticated request to the
/reviews
endpoint. This will fetch some of your published reviews
.get
https://api.okendo.io/enterprise
/reviews
List Reviews
To make the request, use a networking client of your choice or follow these examples:
cURL
Node.js
curl https://api.okendo.io/enterprise/reviews -u <okendo_user_id>:<api_key>
const https = require('https');
https.get('https://api.okendo.io/enterprise/reviews', { auth: '<okendo_user_id>:<api_key>' }, res => {
let body = '';
res.on('data', chunk => body += chunk);
res.on('end', () => {
const response = JSON.parse(body);
console.log(response.reviews);
});
});
Last modified 10mo ago