PUT api/education/my/education-result-details/update/{eduResultDetailID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eduResultDetailID

integer

Required

Body Parameters

RecEduResultDetailDTOW
NameDescriptionTypeAdditional information
applicant_id

integer

Required

edu_result_master_id

integer

Required

subject_id

integer

Required

subject_grade_id

integer

Required

other_subject

string

Max length: 200

other_grade

string

Max length: 50

Request Formats

application/json, text/json

Sample:
{
  "applicant_id": 1,
  "edu_result_master_id": 2,
  "subject_id": 3,
  "subject_grade_id": 4,
  "other_subject": "sample string 5",
  "other_grade": "sample string 6"
}

application/xml, text/xml

Sample:
<RecEduResultDetailDTOW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xceed365EngageApi.core.DTOs.Writable">
  <applicant_id>1</applicant_id>
  <edu_result_master_id>2</edu_result_master_id>
  <other_grade>sample string 6</other_grade>
  <other_subject>sample string 5</other_subject>
  <subject_grade_id>4</subject_grade_id>
  <subject_id>3</subject_id>
</RecEduResultDetailDTOW>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.