GET api/CorporateEventFeedback

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EventFeedbackResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

eventFeedbacks

Collection of EventFeedback

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "eventFeedbacks": [
    {
      "INTERESTED_TOPIC": "sample string 1",
      "SEMINAR_RATING": "sample string 2",
      "SUGGESTIONS": "sample string 3",
      "FEEDBACK_DATE": "2025-08-06T03:33:13.715724+04:00"
    },
    {
      "INTERESTED_TOPIC": "sample string 1",
      "SEMINAR_RATING": "sample string 2",
      "SUGGESTIONS": "sample string 3",
      "FEEDBACK_DATE": "2025-08-06T03:33:13.715724+04:00"
    }
  ]
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","eventFeedbacks":[{"INTERESTED_TOPIC":"sample string 1","SEMINAR_RATING":"sample string 2","SUGGESTIONS":"sample string 3","FEEDBACK_DATE":"2025-08-06T03:33:13.715724+04:00"},{"INTERESTED_TOPIC":"sample string 1","SEMINAR_RATING":"sample string 2","SUGGESTIONS":"sample string 3","FEEDBACK_DATE":"2025-08-06T03:33:13.715724+04:00"}]}

application/xml, text/xml

Sample:
<EventFeedbackResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SuntechSupportServices.Models.CorporateTraining">
  <eventFeedbacks>
    <EventFeedback>
      <FEEDBACK_DATE>2025-08-06T03:33:13.715724+04:00</FEEDBACK_DATE>
      <INTERESTED_TOPIC>sample string 1</INTERESTED_TOPIC>
      <SEMINAR_RATING>sample string 2</SEMINAR_RATING>
      <SUGGESTIONS>sample string 3</SUGGESTIONS>
    </EventFeedback>
    <EventFeedback>
      <FEEDBACK_DATE>2025-08-06T03:33:13.715724+04:00</FEEDBACK_DATE>
      <INTERESTED_TOPIC>sample string 1</INTERESTED_TOPIC>
      <SEMINAR_RATING>sample string 2</SEMINAR_RATING>
      <SUGGESTIONS>sample string 3</SUGGESTIONS>
    </EventFeedback>
  </eventFeedbacks>
  <message>sample string 2</message>
  <status>sample string 1</status>
</EventFeedbackResult>

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="status"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="message"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[0].INTERESTED_TOPIC"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[0].SEMINAR_RATING"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[0].SUGGESTIONS"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[0].FEEDBACK_DATE"

2025-08-06T03:33:13.7157240+04:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[1].INTERESTED_TOPIC"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[1].SEMINAR_RATING"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[1].SUGGESTIONS"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedbacks[1].FEEDBACK_DATE"

2025-08-06T03:33:13.7157240+04:00
--MultipartDataMediaFormatterBoundary1q2w3e--