Create Job
curl --request POST \
--url https://api.example.com/api/v1/companies/me/jobsimport requests
url = "https://api.example.com/api/v1/companies/me/jobs"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/v1/companies/me/jobs', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/v1/companies/me/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyDirect Jobs
Create Job
Create a new job posting for the authenticated company
POST
/
api
/
v1
/
companies
/
me
/
jobs
Create Job
curl --request POST \
--url https://api.example.com/api/v1/companies/me/jobsimport requests
url = "https://api.example.com/api/v1/companies/me/jobs"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/v1/companies/me/jobs', 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",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/v1/companies/me/jobs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/companies/me/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyEndpoint
POST /api/v1/companies/me/jobs
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
Description
Create a new job posting. The job is created withDRAFT status by default. Use the publish endpoint to make it live.
Request Body
{
"title": "Senior Backend Engineer",
"description": "We are looking for an experienced backend engineer...",
"requirements": "5+ years experience in Node.js",
"responsibilities": "Design and implement APIs",
"location": "Cairo, Egypt",
"salaryMin": 15000,
"salaryMax": 25000,
"jobType": "FULL_TIME",
"workPreference": "REMOTE",
"experienceLevel": "SENIOR",
"deadline": "2026-03-15",
"skillNames": ["Node.js", "TypeScript", "PostgreSQL"]
}
Request Fields
Response
Success Response (201 Created)
{
"success": true,
"data": {
"id": "6cc9f0af-10c0-4998-b252-fc6c52394759",
"title": "Senior Backend Engineer",
"description": "We are looking for an experienced backend engineer...",
"requirements": "5+ years experience in Node.js",
"responsibilities": "Design and implement APIs",
"location": "Cairo, Egypt",
"salaryMin": 15000,
"salaryMax": 25000,
"jobType": "FULL_TIME",
"workPreference": "REMOTE",
"experienceLevel": "SENIOR",
"status": "DRAFT",
"deadline": "2026-03-15T00:00:00.000Z",
"publishedAt": null,
"company": {
"id": "8cfee915-6e24-4741-9493-fd5680743a84",
"name": "Tech Corp",
"logoUrl": null
},
"skills": [
{
"skillId": "1d1d1d93-c910-47e3-b2ff-5f5bc2ce0541",
"name": "Node.js"
},
{
"skillId": "2d2d2d93-c910-47e3-b2ff-5f5bc2ce0542",
"name": "TypeScript"
}
]
},
"message": "Success",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "POST"
}
}
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",
"method": "POST",
"details": "Bad Request"
}
}
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "POST",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/companies/me/jobs",
"method": "POST",
"details": "Forbidden"
}
}
Notes
Skill Creation: When providing skillNames, new skills will be automatically created in the
platform if they don’t exist.
Initial Status: Jobs are created with
DRAFT status. Use POST /companies/me/jobs/{jobId} /publish to make the job live.⌘I
