PUT account/employeeProfileEducation?id={id}

Request Information

URI Parameters

Name Description Type Additional information
id

integer (Int32)

Required

Body Parameters

employeeProfileEducationPostModel
Name Description Type Additional information
educationLevelId

integer (Int32)

Required

universityId

integer (Int32)

None.

universityDepartmentId

integer (Int32)

None.

schoolName

string

Max length: 128

startDate

date

None.

endDate

date

None.

graduationGrade

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "educationLevelId": 1,
  "universityId": 1,
  "universityDepartmentId": 1,
  "schoolName": "sample string 2",
  "startDate": "2024-05-05T00:41:52.1682692+03:00",
  "endDate": "2024-05-05T00:41:52.1682692+03:00",
  "graduationGrade": 1.0
}

application/xml, text/xml

Sample:
<employeeProfileEducationPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <educationLevelId>1</educationLevelId>
  <endDate>2024-05-05T00:41:52.1682692+03:00</endDate>
  <graduationGrade>1</graduationGrade>
  <schoolName>sample string 2</schoolName>
  <startDate>2024-05-05T00:41:52.1682692+03:00</startDate>
  <universityDepartmentId>1</universityDepartmentId>
  <universityId>1</universityId>
</employeeProfileEducationPostModel>

multipart/form-data

Sample:
<employeeProfileEducationPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><educationLevelId>1</educationLevelId><endDate>2024-05-05T00:41:52.1682692+03:00</endDate><graduationGrade>1</graduationGrade><schoolName>sample string 2</schoolName><startDate>2024-05-05T00:41:52.1682692+03:00</startDate><universityDepartmentId>1</universityDepartmentId><universityId>1</universityId></employeeProfileEducationPostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.