Skip to main content
GET
/
ingest
/
{id}
Get Submitted Raw Data Detail
curl --request GET \
  --url https://mcp.closedloop.sh/ingest/{id} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "title": "Customer feedback from call",
    "content": "The customer mentioned wanting a dark mode option for the interface...",
    "source_url": "https://gong.io/calls/abc123",
    "source_id": "call_abc123",
    "source_timestamp": "2025-01-27T10:30:00Z",
    "customer_id": "customer_123",
    "reporter_name": "John Smith",
    "reporter_email": "john@example.com",
    "language": "en",
    "metadata": {
      "call_duration": 1800,
      "participants": 3
    },
    "tags": [
      "ui",
      "accessibility",
      "feature-request"
    ],
    "status": "processing",
    "created_at": "2025-01-27T10:30:00Z",
    "updated_at": "2025-01-27T10:30:00Z",
    "claimed_at": "2025-01-27T10:30:00Z",
    "retry_count": 0,
    "error_message": "Processing failed due to content length",
    "credits_consumed": 5,
    "feedback_count": 1
  }
}

Authorizations

Authorization
string
header
required

API key for authentication (format: Bearer YOUR_API_KEY)

Path Parameters

id
string<uuid>
required

Feedback ID

Response

Submitted feedback details

success
boolean
Example:

true

data
object