POST api/FeedbackEvaluation/SavePreEvaluationDetails

Used to save pre evaluation details

Request Information

URI Parameters

None.

Body Parameters

PreEvaluationFeedback
NameDescriptionTypeAdditional information
RegistrationId

Gets or sets the registration Id

integer

None.

CourseMaterialFolderId

Gets or sets the course material folder

integer

None.

InstructorId

Gets or sets the instructor

integer

None.

Evaluate1

Gets or sets the evaluation 1

decimal number

None.

Evaluate2

Gets or sets the evaluation 2

decimal number

None.

Evaluate3

Gets or sets the evaluation 3

decimal number

None.

Evaluate4

Gets or sets the evaluation 4

decimal number

None.

Comments

Gets or sets the student comments

string

None.

IsSystemFeedback

boolean

None.

SubjectId

Gets or sets the SubjectId

integer

None.

CenterIdFromSchedule

Gets or sets the CenterIdFromSchedule

integer

None.

ScheduleId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RegistrationId": 1,
  "CourseMaterialFolderId": 2,
  "InstructorId": 3,
  "Evaluate1": 4.1,
  "Evaluate2": 5.1,
  "Evaluate3": 6.1,
  "Evaluate4": 7.1,
  "Comments": "sample string 8",
  "IsSystemFeedback": true,
  "SubjectId": 10,
  "CenterIdFromSchedule": 11,
  "ScheduleId": "sample string 12"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PreEvaluationFeedback'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>