POST api/interview/question/feedback/summary/create

Request Information

URI Parameters

None.

Body Parameters

RecInterviewQuestionsSummaryDTOW
NameDescriptionTypeAdditional information
interview_batch_id

integer

Required

applicant_id

integer

None.

summary_description

string

Required

text

string

Required

decision

string

Required

Max length: 100

interview_score

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "interview_batch_id": 1,
  "applicant_id": 2,
  "summary_description": "sample string 3",
  "text": "sample string 4",
  "decision": "sample string 5",
  "interview_score": 1
}

application/xml, text/xml

Sample:
<RecInterviewQuestionsSummaryDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <applicant_id>2</applicant_id>
  <decision>sample string 5</decision>
  <interview_batch_id>1</interview_batch_id>
  <interview_score>1</interview_score>
  <summary_description>sample string 3</summary_description>
  <text>sample string 4</text>
</RecInterviewQuestionsSummaryDTOW>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.