---
title: "Update a job profile"
method: PUT
path: "/job_profiles/{id}"
tags: ["Job Profiles"]
---

# Update a job profile

`PUT /job_profiles/{id}`

Update an existing job profile. Custom fields can be updated using their internal_name as keys.

## Request body

- object
  - `name` string — Name of the job profile
  - `job_group_id` integer — ID of the job group this profile will be associated to
  - `job_level_id` integer — ID of the job level (seniority) this profile will be associated to

## Response `200`

OK

- object
  - `data` JobProfile — Represents a job profile in the job catalog
    - `id` integer, required — Unique identifier of the job profile
    - `name` string, required — Name of the job profile
    - `job_group` object, required — The job group this profile belongs to
      - `id` integer
      - `name` string
    - `job_level` object — The job level (seniority) associated with this profile. May be null if not set.
      - `id` integer
      - `name` string
    - `fields` object — Custom fields associated with this job profile. Each key is the field's internal_name.
    - `created_at` string, date-time, required — Timestamp when the job profile was created
    - `updated_at` string, date-time, required — Timestamp when the job profile was last updated

## Other responses

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

---

[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)
