SurveyResponses Test
TXN/SurveyResponses/{surveyResponseId}
Update an existing survey response.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/SurveyResponses/{surveyResponseId}

URI Parameters

Parameter Name Data Type Required Notes
surveyResponseId integer Y

Request Body

Request object type : SurveyResponse

Request object type SurveyResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
Answer string 255 N
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
OrderId integer Y
FK: T_ORDER.order_no   Resource: Orders
QuestionId integer Y
FK: TR_SURVEY_QUESTION.id   Resource: SurveyQuestions
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Answer": "sample string 1",
  "CreatedDateTime": "2025-04-24T05:25:25.0929331-07:00",
  "CreateLocation": "sample string 2",
  "CreatedBy": "sample string 3",
  "Id": 1,
  "OrderId": 4,
  "QuestionId": 5,
  "UpdatedDateTime": "2025-04-24T05:25:25.0929331-07:00",
  "UpdatedBy": "sample string 6"
}
<SurveyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Answer>sample string 1</Answer>
  <CreateLocation>sample string 2</CreateLocation>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDateTime>2025-04-24T05:25:25.0929331-07:00</CreatedDateTime>
  <Id>1</Id>
  <OrderId>4</OrderId>
  <QuestionId>5</QuestionId>
  <UpdatedBy>sample string 6</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:25:25.0929331-07:00</UpdatedDateTime>
</SurveyResponse>

Response object type : SurveyResponse

Response object type SurveyResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
Answer string 255 N
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
OrderId integer Y
FK: T_ORDER.order_no   Resource: Orders
QuestionId integer Y
FK: TR_SURVEY_QUESTION.id   Resource: SurveyQuestions
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Answer": "sample string 1",
  "CreatedDateTime": "2025-04-24T05:25:25.0929331-07:00",
  "CreateLocation": "sample string 2",
  "CreatedBy": "sample string 3",
  "Id": 1,
  "OrderId": 4,
  "QuestionId": 5,
  "UpdatedDateTime": "2025-04-24T05:25:25.0929331-07:00",
  "UpdatedBy": "sample string 6"
}
<SurveyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Answer>sample string 1</Answer>
  <CreateLocation>sample string 2</CreateLocation>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDateTime>2025-04-24T05:25:25.0929331-07:00</CreatedDateTime>
  <Id>1</Id>
  <OrderId>4</OrderId>
  <QuestionId>5</QuestionId>
  <UpdatedBy>sample string 6</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:25:25.0929331-07:00</UpdatedDateTime>
</SurveyResponse>
Change Version Description Contract Old New
Parameter Changed 15.0.0 surveyResponseId has been marked as required. Required