GET
/
insights
/
{id}
curl --request GET \
  --url https://api.open.cx/insights/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "org_id": "<string>",
  "group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "FEEDBACK",
  "content": "<string>",
  "sentiment": "POSITIVE",
  "category": "<string>",
  "user_story": "<string>",
  "occurrence_count": 123,
  "is_resolved": 123,
  "resolved_at": "<string>",
  "resolved_by": 123,
  "created_at": "<string>",
  "updated_at": "<string>",
  "last_seen_at": "<string>",
  "sessions": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/json

Successfully retrieved insight

The response is of type object.