POST api/interview/interviews/rating-competencies/save

Request Information

URI Parameters

None.

Body Parameters

RecV3InterviewSaveCompetencyScoresRequestDTO
NameDescriptionTypeAdditional information
rating_header_id

integer

None.

scores

Collection of RecV3InterviewCompetencyScoreDTO

None.

Request Formats

application/json, text/json

Sample:
{
  "rating_header_id": 1,
  "scores": [
    {
      "competency_id": 1,
      "score": 64
    },
    {
      "competency_id": 1,
      "score": 64
    }
  ]
}

application/xml, text/xml

Sample:
<RecV3InterviewSaveCompetencyScoresRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.ReadOnly">
  <rating_header_id>1</rating_header_id>
  <scores xmlns:d2p1="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
    <d2p1:RecV3InterviewCompetencyScoreDTO>
      <d2p1:competency_id>1</d2p1:competency_id>
      <d2p1:score>64</d2p1:score>
    </d2p1:RecV3InterviewCompetencyScoreDTO>
    <d2p1:RecV3InterviewCompetencyScoreDTO>
      <d2p1:competency_id>1</d2p1:competency_id>
      <d2p1:score>64</d2p1:score>
    </d2p1:RecV3InterviewCompetencyScoreDTO>
  </scores>
</RecV3InterviewSaveCompetencyScoresRequestDTO>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.