POST api/EmployeeEducation

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objDat
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "SL_ID": 1,
  "EMP_ID": 1,
  "EDU_TYPE_ID": 1,
  "EDU_TYPE_NAME": "sample string 2",
  "DEGREE": "sample string 3",
  "INSTITUTE_NAME": "sample string 4",
  "YEAR_OF_PASSING": "2025-01-11T12:52:37.003693+03:00",
  "EDU_DOC": "sample string 5",
  "EDU_DOC_NAME": "sample string 6",
  "WF_EMP_ID": 1
}

application/xml, text/xml

Sample:
<EmployeeEducation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ComsipApi.Models.EmployeeProfile">
  <DEGREE>sample string 3</DEGREE>
  <EDU_DOC>sample string 5</EDU_DOC>
  <EDU_DOC_NAME>sample string 6</EDU_DOC_NAME>
  <EDU_TYPE_ID>1</EDU_TYPE_ID>
  <EDU_TYPE_NAME>sample string 2</EDU_TYPE_NAME>
  <EMP_ID>1</EMP_ID>
  <INSTITUTE_NAME>sample string 4</INSTITUTE_NAME>
  <SL_ID>1</SL_ID>
  <WF_EMP_ID>1</WF_EMP_ID>
  <YEAR_OF_PASSING>2025-01-11T12:52:37.003693+03:00</YEAR_OF_PASSING>
</EmployeeEducation>

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