Reviews
Get a review
GET
/
api
/
v1
/
app
/
reviews
/
{id}
Get a review
curl --request GET \
--url https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}import requests
url = "https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}', 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://{subdomain}.easyflows.io/api/v1/app/reviews/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://{subdomain}.easyflows.io/api/v1/app/reviews/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"id": "27e460ed-1e9c-4097-9f7e-12db081aa5c2",
"rating": 5,
"body": "I really like this product.",
"customer": true,
"approved": true,
"member": {
"id": "f804cfec-39ec-45cc-845a-4fe51b80d2f0",
"name": "John Doe"
},
"created_at": "2026-01-01T12:00:00Z",
"updated_at": "2026-01-01T12:00:00Z",
"title": "Great product!",
"product": {
"id": "0b0abfba-18a4-4b7e-9179-e0cec1f2994f",
"ref": "tebex-5ea84f",
"platform": "tebex",
"name": "Example Product",
"image": "https://example.com/image.jpg",
"description": "This is an example product."
}
}
}{
"error": "<string>"
}⌘I
Get a review
curl --request GET \
--url https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}import requests
url = "https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}', 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://{subdomain}.easyflows.io/api/v1/app/reviews/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://{subdomain}.easyflows.io/api/v1/app/reviews/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"id": "27e460ed-1e9c-4097-9f7e-12db081aa5c2",
"rating": 5,
"body": "I really like this product.",
"customer": true,
"approved": true,
"member": {
"id": "f804cfec-39ec-45cc-845a-4fe51b80d2f0",
"name": "John Doe"
},
"created_at": "2026-01-01T12:00:00Z",
"updated_at": "2026-01-01T12:00:00Z",
"title": "Great product!",
"product": {
"id": "0b0abfba-18a4-4b7e-9179-e0cec1f2994f",
"ref": "tebex-5ea84f",
"platform": "tebex",
"name": "Example Product",
"image": "https://example.com/image.jpg",
"description": "This is an example product."
}
}
}{
"error": "<string>"
}