Skip to main content
POST
/
loyalty
/
cp
/
api
/
submit-review
Submit product review
curl --request POST \
  --url https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review \
  --header 'Content-Type: application/json' \
  --data '
{
  "createAt": "2023-11-07T05:31:56Z",
  "shop": "<string>"
}
'
import requests

url = "https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review"

payload = {
"createAt": "2023-11-07T05:31:56Z",
"shop": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({createAt: '2023-11-07T05:31:56Z', shop: '<string>'})
};

fetch('https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
const url = 'https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review';
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({createAt: '2023-11-07T05:31:56Z', shop: '<string>'})
};

fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'createAt' => '2023-11-07T05:31:56Z',
'shop' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);

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

curl_close($curl);

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

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

func main() {

url := "https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review"

payload := strings.NewReader("{\n \"createAt\": \"2023-11-07T05:31:56Z\",\n \"shop\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Content-Type", "application/json")

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

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

fmt.Println(string(body))

}
require 'uri'
require 'net/http'

url = URI("https://loyalty-admin.appstle.com/loyalty/cp/api/submit-review")

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

request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"createAt\": \"2023-11-07T05:31:56Z\",\n \"shop\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
"Review successfully submitted; it will reflect shortly."
{
"details": "Rating must be between 1 and 5",
"error": "Invalid request"
}
{
"error": "Authentication required"
}
{
"error": "Failed to submit review. Please try again."
}

Body

application/json

Product review submission containing rating, title, body, product details, and optional uniqueId for order linking

createAt
string<date-time>
required
shop
string
required
archived
boolean
body
string
customerId
integer<int64>
id
integer<int64>
originalReviewBody
string
originalReviewTitle
string
pinned
boolean
productHandle
string
productId
integer<int64>
productImage
string
productTitle
string
publishedStatus
boolean
rating
integer<int32>
replayBody
string
replayDate
string<date-time>
reviewEditReason
string
reviewSource
enum<string>
Available options:
WEB_PAGE,
API,
IMPORT
reviewerEmail
string
reviewerName
string
title
string
uniqueId
string<uuid>

Response

Review submitted successfully. Points will be awarded asynchronously if eligible.

The response is of type string.