List Feedback
curl --request GET \
--url https://api.prod.usesimple.ai/api/v1/feedback \
--header 'Authorization: <api-key>'import requests
url = "https://api.prod.usesimple.ai/api/v1/feedback"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.prod.usesimple.ai/api/v1/feedback', 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.prod.usesimple.ai/api/v1/feedback",
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: <api-key>"
],
]);
$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://api.prod.usesimple.ai/api/v1/feedback"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.prod.usesimple.ai/api/v1/feedback")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prod.usesimple.ai/api/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"feedback": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transcript_entry_id": "<string>",
"feedback_text": "<string>",
"resolved": true,
"created_at": "2023-11-07T05:31:56Z",
"notes": [
{
"note_text": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"author_name": "<string>"
}
],
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "wrong_response",
"utterance_text": "<string>",
"utterance_role": "<string>",
"corrected_response": "<string>",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_name": "<string>",
"node_name": "<string>",
"resolved_at": "2023-11-07T05:31:56Z",
"submitted_by": {
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}
}
],
"total_count": 123,
"page": 123,
"page_size": 123,
"total_pages": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Feedback
List Feedback
List feedback left on call transcripts
GET
/
feedback
List Feedback
curl --request GET \
--url https://api.prod.usesimple.ai/api/v1/feedback \
--header 'Authorization: <api-key>'import requests
url = "https://api.prod.usesimple.ai/api/v1/feedback"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.prod.usesimple.ai/api/v1/feedback', 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.prod.usesimple.ai/api/v1/feedback",
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: <api-key>"
],
]);
$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://api.prod.usesimple.ai/api/v1/feedback"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.prod.usesimple.ai/api/v1/feedback")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prod.usesimple.ai/api/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"feedback": [
{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transcript_entry_id": "<string>",
"feedback_text": "<string>",
"resolved": true,
"created_at": "2023-11-07T05:31:56Z",
"notes": [
{
"note_text": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"author_name": "<string>"
}
],
"call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"category": "wrong_response",
"utterance_text": "<string>",
"utterance_role": "<string>",
"corrected_response": "<string>",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_name": "<string>",
"node_name": "<string>",
"resolved_at": "2023-11-07T05:31:56Z",
"submitted_by": {
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}
}
],
"total_count": 123,
"page": 123,
"page_size": 123,
"total_pages": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Query Parameters
Page number for pagination
Number of feedback entries per page (max 100)
Required range:
x <= 100Filter by feedback category
Available options:
wrong_response, hallucination, tone, missed_intent, transcription_error, other Filter by agent UUID
Filter by call UUID
Filter by resolved state (true = marked as fixed, false = open)
Filter feedback created at or after this datetime (ISO 8601 format)
Filter feedback created at or before this datetime (ISO 8601 format)
⌘I