Answer types
Survicate supports numerous question types.
Choice
This is an answer that will be sent to following question types:
- Single choice
- Net Promoter Score
- Rating
- Smiley scale
- Dropdown
"choice": {
"id": 201139,
"body": "Companies or organizations (B2B)",
"comment": "mostly SMBs"
}
For NPS
"choice": {
"id": 9,
"body": "promoter",
"comment": null
}
Attributes:
id
is answer id in Survicatebody
contains answer presented as a stringcomment
is additional comment provided by respondent
Attributes for NPS:
id
is answer valuebody
contains answer presented as a string
Fields
Fields are answers to contact form added to your survey.
"fields": {
"firstName":"Alan",
"lastName":"Fresco",
"email":"alan@example.com",
"organization":"Example Corp",
"department":"Product",
"jobTitle":"Product Manager",
"phone":"+48 123456789",
"comment":"Comment",
"addressOne":"Example Street",
"addressTwo":"00000 City",
"city":"Nashville",
"state":"Tennessee",
"annualRevenue":"0",
"employees":"50",
"industry":"IT"
}
fields
attribute contains all answers collected through fields in contact form.
Choices
Choices are answers to multiple answer question - checkboxes.
"choices": [
{
"id": 1021,
"body": "IT/Product",
"comment": "most important for our company"
},
{
"id": 1022,
"body": "Customer support",
"comment": null
},
{
"id": 1023,
"body": "Marketing",
"comment": null
}
]
Choices are presented as an array of responses. body
contains answer presented as a string. comment
is additional comment provided by respondent
Text
Question type: Text question
"text": "Awesome platform and great support!"
text
contains answer presented as a string.
Date
Question type: Date
"date": "2019-05-22"
date
contains answer presented as a string.