Content Sessions
The answer object
The content session answer object represents a user’s response to a survey question within a content session. It contains both the answer value and metadata about the question being answered.
A unique identifier for the answer.
The object type identifier. Always set to “contentSessionAnswer” to distinguish it from other API objects.
The type of answer. Possible values include:
- “nps” - Net Promoter Score (0-10)
- “star-rating” - Star rating (1-5)
- “multi-line-text” - Multi-line text input
- “multiple-choice” - Multiple choice selection
- “single-line-text” - Single line text input
- “scale” - Scale rating (1-10)
The value of the answer. The format depends on the answerType:
- For “nps”, “star-rating”, “scale”: A number as a string (e.g., “2”, “8”)
- For “multiple-choice”: The selected choice option value
- For “single-line-text”, “multi-line-text”: The text input value
The timestamp when the answer was provided, in ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ).
The Cross-Version ID (CVID) of the question object that this answer corresponds to.
The name of the question object that this answer corresponds to.