Add a new job detail record for a user

This interface is used to add a new job detail record to a worker.

Add new job detail record

POST /add-ee-job-detail

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Required
Description

customer_id

number

The unique Marco identifier for your company

email

string

Account email of the user

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

{
  "email": "[email protected]",
  "customer_id": "1",
  "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": 1818,
    "is_intern": false,
    "job_title": "Customer IT",
    "job_description": "testing",
    "location": "Beijing",
    "work_email": "[email protected]",
    "effective_date": "2025-01-01",
    "user": 2232,
    "platform_email": "[email protected]"
}

Last updated