Skip to main content
GET
/
insight
Get Records
curl --request GET \
  --url https://api.example.com/insight/ \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "remaining_size_mb": 123,
  "records": [
    {
      "id": "<string>",
      "name": "<string>",
      "size_mb": 123,
      "creation_date": "2023-11-07T05:31:56Z",
      "modified_date": "2023-11-07T05:31:56Z",
      "status": "Uploaded",
      "is_archived": true,
      "is_public": true,
      "participants_count": 123,
      "respondents_count": 123,
      "respondent_names": [
        "<string>"
      ],
      "has_reports": true,
      "duration_sec": 123,
      "file_extension": "<string>",
      "file_name": "<string>",
      "type": "text",
      "project": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

total
integer
required
remaining_size_mb
number
required
records
RecordItem · object[]
required