POST api/CorporateEventFeedback

Request Information

URI Parameters

None.

Body Parameters

EventFeedback
NameDescriptionTypeAdditional information
INTERESTED_TOPIC

string

None.

SEMINAR_RATING

string

None.

SUGGESTIONS

string

None.

FEEDBACK_DATE

date

None.

Request Formats

application/json, text/json

Sample:
{
  "INTERESTED_TOPIC": "sample string 1",
  "SEMINAR_RATING": "sample string 2",
  "SUGGESTIONS": "sample string 3",
  "FEEDBACK_DATE": "2025-08-06T03:31:56.9634092+04:00"
}

text/html

Sample:
{"INTERESTED_TOPIC":"sample string 1","SEMINAR_RATING":"sample string 2","SUGGESTIONS":"sample string 3","FEEDBACK_DATE":"2025-08-06T03:31:56.9634092+04:00"}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

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

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

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="SUGGESTIONS"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="FEEDBACK_DATE"

2025-08-06T03:31:56.9634092+04:00
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

EventFeedbackAddResult
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

eventFeedback

EventFeedback

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "eventFeedback": {
    "INTERESTED_TOPIC": "sample string 1",
    "SEMINAR_RATING": "sample string 2",
    "SUGGESTIONS": "sample string 3",
    "FEEDBACK_DATE": "2025-08-06T03:31:56.9790866+04:00"
  }
}

text/html

Sample:
{"status":"sample string 1","message":"sample string 2","eventFeedback":{"INTERESTED_TOPIC":"sample string 1","SEMINAR_RATING":"sample string 2","SUGGESTIONS":"sample string 3","FEEDBACK_DATE":"2025-08-06T03:31:56.9790866+04:00"}}

application/xml, text/xml

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

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="eventFeedback.INTERESTED_TOPIC"

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

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedback.SUGGESTIONS"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="eventFeedback.FEEDBACK_DATE"

2025-08-06T03:31:56.9790866+04:00
--MultipartDataMediaFormatterBoundary1q2w3e--