Get a response
GET/v3/responses/:id
Get a response
Request
Path Parameters
id numberrequired
Id of response
Query Parameters
survey_id numberrequired
preserve_format boolean
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
data
object
id number
Id of response
survey_id number
Id of Survey
contact_id number
completed string
Status of the submission
channel_id number
Id of channel
language string
Language of the response
completed_time date
Time at which response completed
answers
object[]
question string
question_tags string[]
Question tags
question_id number
skipped boolean
Is the question skipped?
channel
object
name string
Name of the share
type string
Type of channel
status string
Status of channel
{
"data": {
"id": 1,
"survey_id": 2,
"contact_id": 0,
"completed": "string",
"channel_id": 3,
"language": "en",
"completed_time": "2022-03-03T06:19:04.416Z",
"answers": [
{
"question": "How likely are you to recommend our Product to friends?",
"question_tags": [
"string"
],
"question_id": 0,
"skipped": false
}
],
"channel": {
"name": "Email share 1",
"type": "EMAIL",
"status": "ACTIVE"
}
}
}
Loading...