Documentation Index Fetch the complete documentation index at: https://docs.tellscope.io/llms.txt
Use this file to discover all available pages before exploring further.
Mutation
mutation {
addFeedbackItem (
apiKey : String !
input : NewFeedbackInput !
): FeedbackItem !
}
Parameters
The feedback data to create Source identifier (e.g., api, webhook, custom)
Title or subject of the feedback
Full content of the feedback
Name of the feedback author
Email address of the author
Pre-computed sentiment: positive, neutral, or negative
Additional custom metadata as JSON
Response
Returns the created FeedbackItem.
Unique identifier of the created feedback
Status (always unread for new feedback)
Example
mutation {
addFeedbackItem (
apiKey : "tellscp_sk_YOUR_API_KEY"
input : {
source : "api"
title : "Feature Request: Export to PDF"
content : "It would be great if we could export reports directly to PDF format."
author : "Alex Johnson"
email : "alex@company.com"
sentiment : "neutral"
metadata : {
priority : "medium"
category : "feature_request"
}
}
) {
id
title
status
createdAt
}
}
curl -X POST https://api.tellscope.io/graphql \
-H "Content-Type: application/json" \
-d '{
"query": "mutation { addFeedbackItem(apiKey: \"tellscp_sk_YOUR_API_KEY\", input: { source: \"api\", title: \"Bug report\", content: \"Found an issue...\" }) { id } }"
}'
Use Cases
Webhook Integration Create feedback from your own webhooks and integrations
Import Data Bulk import feedback from external sources
Custom Forms Submit feedback from custom forms on your website
Mobile Apps Collect in-app feedback from your mobile applications