curl --request GET \
--url https://api.example.com/insight/paginated \
--header 'Authorization: Bearer <token>'{
"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>"
}
],
"total": 123,
"page": 123,
"limit": 123,
"has_more": true,
"remaining_size_mb": 123
}Get paginated records list.
Query parameters:
curl --request GET \
--url https://api.example.com/insight/paginated \
--header 'Authorization: Bearer <token>'{
"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>"
}
],
"total": 123,
"page": 123,
"limit": 123,
"has_more": true,
"remaining_size_mb": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?