Skip to main content
GET
/
integrations
/
{id}
/
surveys
/
{surveyId}
/
responses
/
{responseId}
Get survey response
curl --request GET \
  --url https://api.questra.ai/integrations/{id}/surveys/{surveyId}/responses/{responseId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Org-Id: <x-org-id>'
{
  "id": "<string>",
  "answers": {},
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "last_activity_at": "2023-11-07T05:31:56Z",
  "locale": "<string>",
  "source_id": "<string>",
  "embedded_data": {},
  "raw": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.questra.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

X-Org-Id
string
required

The ID of the organization to make requests against. Found on your Settings page.

Path Parameters

id
string
required

Unique ID of the integration

surveyId
string
required

Unique ID of the survey on the integrated platform

responseId
string
required

Unique ID of the response on the integrated platform

Response

Survey response.

id
string
required

Platform-assigned response ID.

status
enum<string>
required
Available options:
in_progress,
completed,
partial,
screened_out,
quota_full,
disqualified,
unknown
answers
object
required

Answer values keyed by the platform's native question code.

started_at
string<date-time>
completed_at
string<date-time>
last_activity_at
string<date-time>
locale
string
source_id
string

Participant source or distribution link ID, when exposed by the platform.

embedded_data
object

Platform contact or embedded data fields.

raw
object

Platform-specific fields preserved for debugging and gradual normalization.