Update Job
curl --request PATCH \
--url https://api.example.com/api/v1/companies/me/jobs/{jobId}import requests
url = "https://api.example.com/api/v1/companies/me/jobs/{jobId}"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('https://api.example.com/api/v1/companies/me/jobs/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/companies/me/jobs/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/companies/me/jobs/{jobId}"
req, _ := http.NewRequest("PATCH", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.example.com/api/v1/companies/me/jobs/{jobId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyDirect Jobs
Update Job
Update an existing job posting
PATCH
/
api
/
v1
/
companies
/
me
/
jobs
/
{jobId}
Update Job
curl --request PATCH \
--url https://api.example.com/api/v1/companies/me/jobs/{jobId}import requests
url = "https://api.example.com/api/v1/companies/me/jobs/{jobId}"
response = requests.patch(url)
print(response.text)const options = {method: 'PATCH'};
fetch('https://api.example.com/api/v1/companies/me/jobs/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/companies/me/jobs/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/companies/me/jobs/{jobId}"
req, _ := http.NewRequest("PATCH", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.example.com/api/v1/companies/me/jobs/{jobId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
response = http.request(request)
puts response.read_bodyEndpoint
PATCH /api/v1/companies/me/jobs/{jobId}
http://localhost:3000/api/v1
This endpoint requires authentication and Company role.
Authentication
Include the access token in the Authorization header:Authorization: Bearer YOUR_ACCESS_TOKEN
Path Parameters
Request Body
All fields are optional - only provide the fields you want to update.{
"title": "Updated Job Title",
"salaryMax": 30000,
"skillNames": ["Node.js", "Python", "Docker"]
}
Request Fields
Response
Success Response (200 OK)
{
"success": true,
"data": {
"id": "6cc9f0af-10c0-4998-b252-fc6c52394759",
"title": "Updated Job Title",
"description": "Job Description",
"requirements": null,
"responsibilities": null,
"location": null,
"salaryMin": null,
"salaryMax": 30000,
"jobType": "FULL_TIME",
"workPreference": "REMOTE",
"experienceLevel": "MID",
"status": "PUBLISHED",
"deadline": null,
"publishedAt": "2026-02-22T14:51:00.000Z",
"company": {
"id": "8cfee915-6e24-4741-9493-fd5680743a84",
"name": "Tech Corp",
"logoUrl": null
},
"skills": [
{
"skillId": "1d1d1d93-c910-47e3-b2ff-5f5bc2ce0541",
"name": "Node.js"
}
]
},
"message": "Success",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs/{jobId}",
"method": "PATCH"
}
}
Error Responses
400 Bad Request - Validation Error
{
"success": false,
"error": {
"message": ["title must be a string"],
"statusCode": 400,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs/{jobId}",
"method": "PATCH",
"details": "Bad Request"
}
}
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs/{jobId}",
"method": "PATCH",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs/{jobId}",
"method": "PATCH",
"details": "Forbidden"
}
}
404 Not Found
{
"success": false,
"error": {
"message": "Job not found",
"statusCode": 404,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs/{jobId}",
"method": "PATCH",
"details": "Not Found"
}
}
Notes
Partial Update: Only provide the fields you want to update. Other fields will remain
unchanged.
Skill Replacement: Providing skillNames will replace all existing skills with the new ones.
⌘I
