JOSS
  1. Lowongan Pekerjaan
JOSS
  • Gambaran Umum
  • Autentikasi
  • Referensi Data
  • Endpoint API
    • Perusahaan
      • Put Company
      • Find Company
      • Delete Company
    • Lowongan Pekerjaan
      • Put Job Vacancy
        PUT
      • Find Job Vacancy
        GET
      • Delete Job Vacancy
        DELETE
  1. Lowongan Pekerjaan

Put Job Vacancy

Testing
PUT
{{base_url}}/api/v1/jobs/{id}/industrial-vacancy
API ini digunakan untuk membuat atau memperbarui data lowongan pekerjaan berdasarkan ID yang diberikan. Jika ID sudah ada, data lowongan pekerjaan yang sesuai akan diperbarui. Jika tidak ada lowongan pekerjaan dengan ID tersebut, API akan membuat lowongan pekerjaan baru dengan data yang diberikan. API ini dirancang agar dapat diakses (dihit) berulang kali, memungkinkan pembaruan data lowongan pekerjaan secara berkala atau berulang untuk memastikan informasi tetap terkini.

Request

Path Params

Header Params

Body Params application/json

Example
{
    "title": "Junior Administrator",
    "employer": {
        "id": "1edd9893-f1a3-45dd-89d4-bc4dc9a071d0",
        "region": {
            "type": "city",
            "id": "73c670c2-bd42-491a-a76b-f17c2edb6680",
            "country_code": null
        },
        "name": "PT Testing",
        "postal_code": "12850",
        "address": "Gedung Semanggi Square, Jl. Semanggi Raya No.1A, RT.1/RW.5, Semanggi, Kec. Karet, Kota Jakarta Selatan, Daerah Khusus Ibukota Jakarta 12850",
        "phone": "021-8791124",
        "email": "info@testing.com",
        "license_number": "909201921212",
        "industry": "898b0b80-4ce3-4b6f-3413-f6b518e9c557",
        "about": "PT Testing adalah perusahaan yang berfokus pada pengelolaan kelapa sawit.",
        "website": "https://www.testing.com",
        "latitude": "-6.238028583492814",
        "longitude": "106.82998199652216",
        "logo_uri": "https://kemnaker-dev.kemnaker.go.id/kelembagaan/institution_logos/f38a8e36-05b9-44b9-8de3-a44478ab8265/632e66cc5f233.png",
        "cover_uri": "https://kemnaker-dev.kemnaker.go.id/kelembagaan/institution_pictures/da59aa44-e013-4292-a6da-6b99c6b5c732/62e5104925f6d.jpg"
    },
    "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
    "quota": 2,
    "qualification": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
    "industry": "898b0b80-4ce3-4b6f-3413-f6b518e9c557",
    "job_type": "0dc1aaf7-9935-442b-ab32-8bae23284af9",
    "job_function": "b568e24e-40fc-001b-f03b-e48402007b44",
    "region": {
        "type": "city",
        "id": "73c670c2-bd42-491a-a76b-f17c2edb6680",
        "country_code": null
    },
    "gender": null,
    "min_education": "d9c9b6f2-6ee9-4ec7-9dfd-21904b711445",
    "min_salary": {
        "currency": "IDR",
        "amount": 5000000
    },
    "max_salary": {
        "currency": "IDR",
        "amount": 10000000
    },
    "marital": null,
    "min_age": 25,
    "max_age": 40,
    "min_experience": null,
    "disability_allowed": false,
    "skills": [
        "engineering",
        "microsoft_office",
        "management"
    ],
    "client_url": "https://www.komdigi.go.id/",
    "expire_at": "2025-02-15",
    "status": "open"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PUT 'https://joss.kemnaker.go.id/api/v1/jobs/9e026c9e-0d8a-4c42-979c-989dde40d40c/industrial-vacancy' \
--header 'Client-Id;' \
--header 'Request-Id;' \
--header 'Request-Timestamp;' \
--header 'Signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "Junior Administrator",
    "employer": {
        "id": "1edd9893-f1a3-45dd-89d4-bc4dc9a071d0",
        "region": {
            "type": "city",
            "id": "73c670c2-bd42-491a-a76b-f17c2edb6680",
            "country_code": null
        },
        "name": "PT Testing",
        "postal_code": "12850",
        "address": "Gedung Semanggi Square, Jl. Semanggi Raya No.1A, RT.1/RW.5, Semanggi, Kec. Karet, Kota Jakarta Selatan, Daerah Khusus Ibukota Jakarta 12850",
        "phone": "021-8791124",
        "email": "info@testing.com",
        "license_number": "909201921212",
        "industry": "898b0b80-4ce3-4b6f-3413-f6b518e9c557",
        "about": "PT Testing adalah perusahaan yang berfokus pada pengelolaan kelapa sawit.",
        "website": "https://www.testing.com",
        "latitude": "-6.238028583492814",
        "longitude": "106.82998199652216",
        "logo_uri": "https://kemnaker-dev.kemnaker.go.id/kelembagaan/institution_logos/f38a8e36-05b9-44b9-8de3-a44478ab8265/632e66cc5f233.png",
        "cover_uri": "https://kemnaker-dev.kemnaker.go.id/kelembagaan/institution_pictures/da59aa44-e013-4292-a6da-6b99c6b5c732/62e5104925f6d.jpg"
    },
    "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry'\''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
    "quota": 2,
    "qualification": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry'\''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
    "industry": "898b0b80-4ce3-4b6f-3413-f6b518e9c557",
    "job_type": "0dc1aaf7-9935-442b-ab32-8bae23284af9",
    "job_function": "b568e24e-40fc-001b-f03b-e48402007b44",
    "region": {
        "type": "city",
        "id": "73c670c2-bd42-491a-a76b-f17c2edb6680",
        "country_code": null
    },
    "gender": null,
    "min_education": "d9c9b6f2-6ee9-4ec7-9dfd-21904b711445",
    "min_salary": {
        "currency": "IDR",
        "amount": 5000000
    },
    "max_salary": {
        "currency": "IDR",
        "amount": 10000000
    },
    "marital": null,
    "min_age": 25,
    "max_age": 40,
    "min_experience": null,
    "disability_allowed": false,
    "skills": [
        "engineering",
        "microsoft_office",
        "management"
    ],
    "client_url": "https://www.komdigi.go.id/",
    "expire_at": "2025-02-15",
    "status": "open"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "id": "8fe2b729-93d1-4866-beb2-bba4a712b3eb",
        "reference": "8bf6ef74-ebd4-41f8-8b3a-c55277a973b8",
        "title": "Junior Administrator",
        "created_at": "2025-01-17 00:13:50"
    },
    "meta": {
        "client_ip": "10.233.79.152",
        "hostname": "joss-api-857d4c5fc5-wcjkb",
        "version": "v1"
    }
}
Modified at 2025-08-09 05:41:05
Previous
Delete Company
Next
Find Job Vacancy
Built with