Create a review for an execution (SDK)
curl --request POST \
--url https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews \
--header 'Content-Type: application/json' \
--data '
{
"agentId": "66602e46-748e-44f2-a5aa-3712c2393436",
"rating": "bad",
"comment": "Bot forneceu informação incorreta sobre horário de funcionamento",
"tags": [
"wrong_info",
"business_hours"
],
"priority": "medium"
}
'import requests
url = "https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews"
payload = {
"agentId": "66602e46-748e-44f2-a5aa-3712c2393436",
"rating": "bad",
"comment": "Bot forneceu informação incorreta sobre horário de funcionamento",
"tags": ["wrong_info", "business_hours"],
"priority": "medium"
}
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({
agentId: '66602e46-748e-44f2-a5aa-3712c2393436',
rating: 'bad',
comment: 'Bot forneceu informação incorreta sobre horário de funcionamento',
tags: ['wrong_info', 'business_hours'],
priority: 'medium'
})
};
fetch('https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews', 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.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews",
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([
'agentId' => '66602e46-748e-44f2-a5aa-3712c2393436',
'rating' => 'bad',
'comment' => 'Bot forneceu informação incorreta sobre horário de funcionamento',
'tags' => [
'wrong_info',
'business_hours'
],
'priority' => 'medium'
]),
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://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews"
payload := strings.NewReader("{\n \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\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))
}HttpResponse<String> response = Unirest.post("https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews")
.header("Content-Type", "application/json")
.body("{\n \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews")
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 \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\n}"
response = http.request(request)
puts response.read_bodyRuntime API - Observability
Create a review for an execution (SDK)
POST
/
api
/
v1
/
runtime
/
v1
/
observability
/
executions
/
{executionId}
/
reviews
Create a review for an execution (SDK)
curl --request POST \
--url https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews \
--header 'Content-Type: application/json' \
--data '
{
"agentId": "66602e46-748e-44f2-a5aa-3712c2393436",
"rating": "bad",
"comment": "Bot forneceu informação incorreta sobre horário de funcionamento",
"tags": [
"wrong_info",
"business_hours"
],
"priority": "medium"
}
'import requests
url = "https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews"
payload = {
"agentId": "66602e46-748e-44f2-a5aa-3712c2393436",
"rating": "bad",
"comment": "Bot forneceu informação incorreta sobre horário de funcionamento",
"tags": ["wrong_info", "business_hours"],
"priority": "medium"
}
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({
agentId: '66602e46-748e-44f2-a5aa-3712c2393436',
rating: 'bad',
comment: 'Bot forneceu informação incorreta sobre horário de funcionamento',
tags: ['wrong_info', 'business_hours'],
priority: 'medium'
})
};
fetch('https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews', 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.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews",
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([
'agentId' => '66602e46-748e-44f2-a5aa-3712c2393436',
'rating' => 'bad',
'comment' => 'Bot forneceu informação incorreta sobre horário de funcionamento',
'tags' => [
'wrong_info',
'business_hours'
],
'priority' => 'medium'
]),
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://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews"
payload := strings.NewReader("{\n \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\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))
}HttpResponse<String> response = Unirest.post("https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews")
.header("Content-Type", "application/json")
.body("{\n \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.runflow.ai/api/v1/runtime/v1/observability/executions/{executionId}/reviews")
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 \"agentId\": \"66602e46-748e-44f2-a5aa-3712c2393436\",\n \"rating\": \"bad\",\n \"comment\": \"Bot forneceu informação incorreta sobre horário de funcionamento\",\n \"tags\": [\n \"wrong_info\",\n \"business_hours\"\n ],\n \"priority\": \"medium\"\n}"
response = http.request(request)
puts response.read_bodyPath Parameters
Body
application/json
Agent ID
Example:
"66602e46-748e-44f2-a5aa-3712c2393436"
Rating of the execution
Available options:
good, bad, needs_improvement Example:
"bad"
Comment explaining the review
Minimum string length:
10Example:
"Bot forneceu informação incorreta sobre horário de funcionamento"
Tags to categorize the issue
Example:
["wrong_info", "business_hours"]Priority level
Available options:
low, medium, high, critical Response
201
Review created
⌘I