---
title: "Create a job profile"
method: POST
path: "/job_profiles"
tags: ["Job Profiles"]
---

# Create a job profile

`POST /job_profiles`

Create a new job profile. Custom fields can be specified using their internal_name as keys.

## Request body

- object
  - `name` string, required — Name of the job profile
  - `job_group_id` integer, required — 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 `201`

Created

- 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

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