Update Employee Education
POST
/empeo/api/v1/employees/educationAll fields that have tag 'Required' and 'Nullable' is mean that field required only when adding data, If update data that field is nullable
Request
Header Params
Content-Type
string
required
Accepted value: application/json
Example:
application/json
Ocp-Apim-Subscription-Key
string
required
Api subscription key get from the OpenAPI integration setting page
Example:
WPe123a9RKbcfLQNSztr45
Authorization
string
required
Authorization credential utilized in API requests
Example:
bearer {token}
Body Params application/json
employeeRefId
string
required
Employee No
companyName
string
required
Employee company name
educationRefNo
string
required
Employee education reference number for update (can view from Get Employee List)
educationDegreeId
integer
required
Education ID (masterTypes)
educationInstitute
string | null
required
Employee formal educational organization
isEducationDomestic
integer | null
required
Employee education domestic status (1 = true, 0 = false)
educationFromYear
integer | null
required
The starting year when the employee began education
educationToYear
integer | null
required
The ending year when the employee completed education
educationFaculty
string | null
optional
Employee education faculty
educationMajorSubject
string | null
optional
Employee education major subject
educationGPA
number | null
optional
Employee grade point average
Example
{
"employeeRefId": "23003",
"companyName": "empeo Dev Test",
"EducationDegreeId": 100008,
"EducationInstitute": "Empeo university",
"IsEducationDomestic": 0,
"EducationMajorSubject": "Information Technology",
"EducationGPA": 3.5,
"EducationFromYear": 2030,
"EducationToYear": 2035
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"statusCode": 200,
"message": "OK",
"data": {
"message": "Update successfully",
"result": true
}
}
Last modified: a year ago