Post v2feedbackevaluationremove
POST
/
v2
/
feedback
/
evaluation
/
remove
cURL
curl --request POST \
--url https://api.orq.ai/v2/feedback/evaluation/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"trace_id": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({id: '<string>', trace_id: '<string>'})
};
fetch('https://api.orq.ai/v2/feedback/evaluation/remove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.orq.ai/v2/feedback/evaluation/remove"
payload = {
"id": "<string>",
"trace_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?
⌘I
cURL
curl --request POST \
--url https://api.orq.ai/v2/feedback/evaluation/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"trace_id": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({id: '<string>', trace_id: '<string>'})
};
fetch('https://api.orq.ai/v2/feedback/evaluation/remove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.orq.ai/v2/feedback/evaluation/remove"
payload = {
"id": "<string>",
"trace_id": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)