POST api/interview/question/feedback/create
Request Information
URI Parameters
None.
Body Parameters
RecInterviewQuestionsFeedbackDTOWName | Description | Type | Additional 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.