curl --request GET \
--url https://api.questra.ai/surveys/{survey_id_or_slug}/changes \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"changeset_id": "<string>",
"survey_id": "<string>",
"resource_type": "survey",
"resource_id": "<string>",
"operation": "create",
"message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"order": 123,
"before": {},
"after": {}
}
],
"nextCursor": "<string>"
}Returns a paginated list of individual changes for the specified survey. Optionally filter by changeset ID or a range of change IDs.
curl --request GET \
--url https://api.questra.ai/surveys/{survey_id_or_slug}/changes \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"changeset_id": "<string>",
"survey_id": "<string>",
"resource_type": "survey",
"resource_id": "<string>",
"operation": "create",
"message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"order": 123,
"before": {},
"after": {}
}
],
"nextCursor": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique ID or slug of the survey
Filter changes by changeset ID
Return changes starting after this change ID
Return changes up to and including this change ID
Pagination cursor returned from a previous request
Maximum number of results to return