Edit job detail record

This interface is used to edit job detail record to a worker.

Edit job detail record

POST /edit-ee-job-detail

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Required
Description

ee_job_detail_id

number

User's job detail record id

job_title

string

New job title

job_description

string

New job description

effective_date

date

New job detail effective date

is_intern

boolean

Is this user is a intern?

reporting_officer_email

string

Reporting officer's email

location

string

Work location

work_email

string

Work Email

Parameter Example

{
  "ee_job_detail_id": "4391",
  "job_title": "Customer IT",
  "job_description": "testing",
  "effective_date": "2025-01-01",
  "is_intern": false,
  "reporting_officer_email": "[email protected]",
  "location": "Beijing",
  "work_email": "[email protected]"
}

Request Example

Response

{
    "id": 4391,
    "customer_id": 1,
    "reporting_officer": 1820,
    "is_intern": false,
    "job_title": "Customer IT",
    "job_description": "Power BI and System Integration",
    "location": "Dalian",
    "work_email": "[email protected]",
    "effective_date": "2025-01-02",
    "user": 2232,
    "platform_email": "[email protected]"
}

Last updated