PUT api/interview/question/feedback/update/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

RecInterviewQuestionsFeedbackDTOW
NameDescriptionTypeAdditional information
comment_field

string

Required

Max length: 100

grade

integer

Required

interview_questions_id

integer

Required

applicant_id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "comment_field": "sample string 1",
  "grade": 2,
  "interview_questions_id": 3,
  "applicant_id": 4
}

application/xml, text/xml

Sample:
<RecInterviewQuestionsFeedbackDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <applicant_id>4</applicant_id>
  <comment_field>sample string 1</comment_field>
  <grade>2</grade>
  <interview_questions_id>3</interview_questions_id>
</RecInterviewQuestionsFeedbackDTOW>

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 'RecInterviewQuestionsFeedbackDTOW'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.