Request Information

URI Parameters

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
surveyResponseId integer

itemId globally unique identifier

questionId string

Body Parameters

None.

Response Information

Resource Description (SurveyComment)

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
ID integer Required on Update

ID of the given survery comment.

QuestionID string ReadOnly

ID of the question for the given survey comment.

Comment string Required

Contents of the given survey comment.

Elaborate string Required

Extra details/information about the given survey comment.

SurveyResponse_ID integer ReadOnly

ID of the survery answers.

Response Formats

application/xml, text/xml

Sample
<SurveyComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4">
  <ID>1</ID>
  <QuestionID>sample string 2</QuestionID>
  <Comment>sample string 3</Comment>
  <Elaborate>sample string 4</Elaborate>
  <SurveyResponse_ID>5</SurveyResponse_ID>
</SurveyComment>

application/json, text/json

Sample
{
  "ID": 1,
  "QuestionID": "sample string 2",
  "Comment": "sample string 3",
  "Elaborate": "sample string 4",
  "SurveyResponse_ID": 5
}