---
title: "Create Job"
method: POST
path: "/api/ats/v1/jobs"
tags: ["Job"]
---

# Create Job

`POST /api/ats/v1/jobs`

Creates a Job object with the given values.

## Headers

- `x-connector-token` string, required

## Request body

- CreateAtsJob
  - `name` string, nullable — The name of the job.
  - `description` string, nullable — A detailed description of the job.
  - `code` string, nullable — The internal or external code that identifies the job.
  - `status` 'OPEN' | 'CLOSED' | 'DRAFT' | 'ARCHIVED' | 'PENDING' | '-', nullable — The current status of the job posting. If the value is not one of the defined enum values, the original value passed through will be returned.
  - `job_posting_urls` AtsUrl[], nullable — A list of URLs where the job is posted.
    - `value` string, nullable, required — The site's url.
    - `url_type` 'PERSONAL' | 'COMPANY' | 'PORTFOLIO' | 'BLOG' | 'SOCIAL_MEDIA' | 'OTHER' | 'JOB_POSTING' | '-', nullable, required — The type of site. If the value is not one of the defined enum values, the original value passed through will be returned.
  - `confidential` boolean, nullable — Whether the job posting is confidential.
  - `departments` string[], nullable — A list of department identifiers associated with the job.
  - `offices` string[], nullable — A list of office identifiers where the job is located.
  - `hiring_managers` string[], nullable — A list of identifiers for hiring managers associated with the job.
  - `recruiters` string[], nullable — A list of identifiers for recruiters associated with the job.
  - `template_id` string, nullable — The template id associated with the job.
  - `remote_user_id` string, uuid — The remote user's id who is creating the job.
  - `openings` integer, nullable — Number of openings for the job.

## Response `201`

Successful Response

- unknown

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

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