curl --request GET \
--url https://api.questra.ai/surveys/{survey_id_or_slug}/history \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"survey_id": "<string>",
"idempotency_key": "<string>",
"type": "initial_programming",
"status": "in_progress",
"user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"title": "<string>",
"metadata": {}
}
],
"nextCursor": "<string>"
}Returns a paginated list of changesets for the specified survey, ordered by most recent first.
curl --request GET \
--url https://api.questra.ai/surveys/{survey_id_or_slug}/history \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"survey_id": "<string>",
"idempotency_key": "<string>",
"type": "initial_programming",
"status": "in_progress",
"user_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"title": "<string>",
"metadata": {}
}
],
"nextCursor": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique ID or slug of the survey
Pagination cursor returned from a previous request
Maximum number of results to return
1 <= x <= 100