Cập nhật nhân sự

URL: {host}/api/employer/{id}/edit

Method: POST

id: Định danh nhân sự

Header:

Body JSON

{
    "name": "Hoàng Nguyễn",
    "department": {
        "id" : 2,
        "role_id": 2
    }
}

Response :

{
    "status": "success",
    "message": "Cập nhật thông tin nhân sự thành công",
    "data": {
        "employer": {
            "id": 19,
            "name": "Hoàng Nguyễn",
            "email": "test_create@gmail.com",
            "code": null,
            "status": 1,
            "login_status": 0,
            "departments": [
                "BOD"
            ]
        }
    }
}

Last updated