---
title: "Update an employee job profile"
method: PUT
path: "/employees/{employee_id}/job_profiles/{id}"
tags: ["Employees"]
---

# Update an employee job profile

`PUT /employees/{employee_id}/job_profiles/{id}`

Updates an existing job profile assignment for an employee. You can change the assigned job profile and/or its effective date.

## Request body

- object
  - `job_profile_id` integer — ID of the job profile to assign
  - `effective_on` string, date — Date from which the job profile assignment is effective

## Response `200`

OK

- object
  - `data` EmployeeJobProfile
    - `id` integer, required
    - `effective_on` string, date, required — Date from which the job profile assignment is effective
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `job_profile` object — Assigned job profile. Present when a job profile is associated.
      - `id` integer
      - `name` string
    - `job_group` object — Job group of the assigned job profile. Present when the job profile belongs to a job group.
      - `id` integer
      - `name` string
    - `job_level` object — Job level (seniority) of the assigned job profile. Present when the job profile has a seniority.
      - `id` integer
      - `name` string

## Other responses

- `404` — Not Found
- `422` — Unprocessable Content

---

[API](https://skmtc.net/peopleforce/apis/company-api.md) · [All operations](https://skmtc.net/peopleforce/apis/company-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/peopleforce/company-api/revisions/ff612e61a4c3/schema)
