A valid request URL is required to generate request examples{
"success": true,
"data": {
"responses": [
{
"response_id": "<string>",
"survey": "<string>",
"survey_id": "<string>",
"rating": 123,
"rating_type": "thumbs",
"submitted_at": "2023-11-07T05:31:56Z",
"session_id": "<string>",
"channel": "<string>",
"response_source": "<string>",
"has_comment": true,
"comment_length": 1,
"comment": "<string>"
}
],
"nextCursor": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}List project survey response
Returns a page of responses, oldest first, with an opaque keyset cursor. The cursor is keyset (timestamp, response_id) rather than an offset, so a client polling forward through history never skips a response or sees one twice as new rows arrive. No per-response score is returned: a score is a property of a population, not of one answer. Requires the feedback-survey:read permission.
A valid request URL is required to generate request examples{
"success": true,
"data": {
"responses": [
{
"response_id": "<string>",
"survey": "<string>",
"survey_id": "<string>",
"rating": 123,
"rating_type": "thumbs",
"submitted_at": "2023-11-07T05:31:56Z",
"session_id": "<string>",
"channel": "<string>",
"response_source": "<string>",
"has_comment": true,
"comment_length": 1,
"comment": "<string>"
}
],
"nextCursor": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Headers
^abl_Path Parameters
Query Parameters
Responses per page. Values above the maximum are capped rather than rejected; a missing or non-positive value falls back to the default.
1 <= x <= 200Opaque keyset cursor from a prior page's nextCursor. A cursor this endpoint did not issue is rejected with 400 INVALID_CURSOR rather than silently restarting the feed.
512Restrict the page to one survey, by its name. A name that resolves to no survey is a 404, not an empty page.
Inclusive lower bound on submitted_at.
Inclusive upper bound on submitted_at.
Was this page helpful?