Get feedback by ID
curl --request GET \
--url https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}', 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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}",
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: Bearer <token>"
],
]);
$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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "f5d8df32-60b4-417a-8b83-8d4dcb4e88e1",
"content": "I found the dashboard charts difficult to understand at first glance. The colors are confusing and the data is hard to interpret.",
"source": "Customer Interview",
"processed": false,
"createdAt": "2025-03-26T22:35:46Z",
"updatedAt": "2025-03-26T22:35:46Z",
"insights": [],
"opportunities": [],
"metadata": [
{
"nodeType": "IntercomConversation",
"conversationId": "123456789",
"url": "https://app.intercom.com/a/apps/abc/inbox/inbox/conversation/123456789",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-02T00:00:00Z"
}
],
"sourceId": "interview_456",
"sourceUrl": "https://basiliskai.slack.com/archives/C053AKR0669/p1744748012159779",
"submittedBy": "user_123",
"sentimentScore": 0.75,
"sentimentCategory": "Positive",
"sentimentConfidence": 0.95,
"createdAtEpoch": 1679867746,
"title": "Dashboard charts are hard to understand"
}
}{
"error": {
"code": "UNAUTHORISED_ERROR",
"description": "User is unauthenticated"
}
}{
"error": {
"code": "UNAUTHORISED_ERROR",
"description": "User is unauthorised"
}
}{
"error": {
"code": "NOT_FOUND",
"description": "The requested resource was not found"
}
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"description": "An unexpected error occurred on the server"
}
}Feedback
Get feedback by ID
Retrieves a specific feedback by ID
GET
/
organisations
/
{orgId}
/
workspaces
/
{workspaceId}
/
feedback
/
{feedbackId}
Get feedback by ID
curl --request GET \
--url https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}', 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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}",
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: Bearer <token>"
],
]);
$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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback/{feedbackId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "f5d8df32-60b4-417a-8b83-8d4dcb4e88e1",
"content": "I found the dashboard charts difficult to understand at first glance. The colors are confusing and the data is hard to interpret.",
"source": "Customer Interview",
"processed": false,
"createdAt": "2025-03-26T22:35:46Z",
"updatedAt": "2025-03-26T22:35:46Z",
"insights": [],
"opportunities": [],
"metadata": [
{
"nodeType": "IntercomConversation",
"conversationId": "123456789",
"url": "https://app.intercom.com/a/apps/abc/inbox/inbox/conversation/123456789",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-02T00:00:00Z"
}
],
"sourceId": "interview_456",
"sourceUrl": "https://basiliskai.slack.com/archives/C053AKR0669/p1744748012159779",
"submittedBy": "user_123",
"sentimentScore": 0.75,
"sentimentCategory": "Positive",
"sentimentConfidence": 0.95,
"createdAtEpoch": 1679867746,
"title": "Dashboard charts are hard to understand"
}
}{
"error": {
"code": "UNAUTHORISED_ERROR",
"description": "User is unauthenticated"
}
}{
"error": {
"code": "UNAUTHORISED_ERROR",
"description": "User is unauthorised"
}
}{
"error": {
"code": "NOT_FOUND",
"description": "The requested resource was not found"
}
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"description": "An unexpected error occurred on the server"
}
}Authorizations
JWT authentication for organization-scoped endpoints.
Path Parameters
Organization ID
Workspace ID
Feedback ID
Query Parameters
Comma-separated list of relationships to include in the response
Response
Success
Response containing a single feedback item
Feedback data
Show child attributes
Show child attributes
⌘I