Submit a profile testimonial
curl --request POST \
--url https://api.app.hrizn.io/v1/public/share/testimonial \
--header 'Content-Type: application/json' \
--data '
{
"profileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerName": "<string>",
"customerText": "<string>"
}
'import requests
url = "https://api.app.hrizn.io/v1/public/share/testimonial"
payload = {
"profileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerName": "<string>",
"customerText": "<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({
profileId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
customerName: '<string>',
customerText: '<string>'
})
};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
profileId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
customerName: '<string>',
customerText: '<string>'
})
};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', 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://api.app.hrizn.io/v1/public/share/testimonial",
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([
'profileId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'customerName' => '<string>',
'customerText' => '<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;
}{
"success": true
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}Submit a profile testimonial
Submits an anonymous testimonial for a Pro Brand profile from its share page. Stored as pending until the profile owner approves it. Each profile accepts at most 10 testimonials per rolling 24 hours (429). Rate limit: 5 per minute and 100 per day per client IP. Origin must be the Hrizn app.
POST
/
share
/
testimonial
Submit a profile testimonial
curl --request POST \
--url https://api.app.hrizn.io/v1/public/share/testimonial \
--header 'Content-Type: application/json' \
--data '
{
"profileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerName": "<string>",
"customerText": "<string>"
}
'import requests
url = "https://api.app.hrizn.io/v1/public/share/testimonial"
payload = {
"profileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customerName": "<string>",
"customerText": "<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({
profileId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
customerName: '<string>',
customerText: '<string>'
})
};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
profileId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
customerName: '<string>',
customerText: '<string>'
})
};
fetch('https://api.app.hrizn.io/v1/public/share/testimonial', 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://api.app.hrizn.io/v1/public/share/testimonial",
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([
'profileId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'customerName' => '<string>',
'customerText' => '<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;
}{
"success": true
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}{
"error": "Invalid lead submission."
}Body
application/json
Response
Testimonial stored as pending
Example:
true
Last modified on September 7, 2026
