Skip to main content
GET
/
customer-feedback-system
List customer feedback requests
curl --request GET \
  --url https://www.renovationfind.com/rest-api-v1/customer-feedback-system \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://www.renovationfind.com/rest-api-v1/customer-feedback-system"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://www.renovationfind.com/rest-api-v1/customer-feedback-system', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://www.renovationfind.com/rest-api-v1/customer-feedback-system",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://www.renovationfind.com/rest-api-v1/customer-feedback-system"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://www.renovationfind.com/rest-api-v1/customer-feedback-system")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://www.renovationfind.com/rest-api-v1/customer-feedback-system")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": {
    "content": [
      {
        "id": 123,
        "customerName": "<string>",
        "email": "<string>",
        "phone": "<string>",
        "dateCreated": "2023-11-07T05:31:56Z",
        "dateModified": "2023-11-07T05:31:56Z",
        "dateRequestSent": "2023-11-07T05:31:56Z",
        "feedbackCompleted": true,
        "flaggedFeedback": true,
        "comments": "<string>",
        "reviewCompleted": true,
        "googleReviewCompleted": true,
        "facebookReviewCompleted": true,
        "bbbReviewCompleted": true,
        "otherReviewCompleted": true,
        "referralCompleted": true,
        "referralByEmailTextCompleted": true,
        "referralByFbCompleted": true,
        "referralConversionCount": 123
      }
    ],
    "page": 123,
    "size": 123,
    "totalElements": 123,
    "totalPages": 123,
    "last": true
  }
}
{
  "success": false,
  "error": "Rate limit exceeded. Maximum 250 requests per 5 minutes. Please retry later."
}

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Query Parameters

page
integer
default:0
Required range: x >= 0
size
integer
default:10

Page size (max 100)

Required range: 1 <= x <= 100
filter
enum<string>
default:ALL
Available options:
ALL,
FLAGGED,
FULLY_COMPLETED,
DELIVERY_SENT,
DELIVERY_PENDING,
DELIVERY_FAILED,
FEEDBACK_COMPLETED,
REVIEW_COMPLETED,
REFERRAL_COMPLETED

Response

Paginated list of customer feedback requests

success
boolean
Example:

true

data
object