Skip to main content
POST
/
feedback
/
{uuid}
/
resolve
Resolve Feedback
curl --request POST \
  --url https://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resolved": true,
  "note": "<string>"
}
'
import requests

url = "https://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve"

payload = {
"resolved": True,
"note": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}

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

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({resolved: true, note: '<string>'})
};

fetch('https://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve', 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/{uuid}/resolve",
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([
'resolved' => true,
'note' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve"

payload := strings.NewReader("{\n \"resolved\": true,\n \"note\": \"<string>\"\n}")

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

req.Header.Add("Authorization", "<api-key>")
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))

}
HttpResponse<String> response = Unirest.post("https://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"resolved\": true,\n \"note\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.prod.usesimple.ai/api/v1/feedback/{uuid}/resolve")

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

request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"resolved\": true,\n \"note\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "success": true,
  "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",
    "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>"
    }
  }
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Path Parameters

uuid
string<uuid>
required

The UUID of the feedback entry

Body

application/json
resolved
boolean
required

true marks the feedback as fixed; false reopens it

note
string

Optional note to attach alongside the resolution change; the note author is recorded as 'API'

Response

Successful Response

success
boolean
required
feedback
Utterance Feedback Response · object
required