접근 가능한 회사 공고 목록
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible \
--header 'Authorization: Bearer <token>'import requests
url = "https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible', 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://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"totalItems": 123,
"totalPages": 123,
"page": 123,
"pageSize": 123,
"items": [
{
"jobId": 123,
"status": "<string>",
"hiring": true,
"title": "<string>",
"seniorities": [
"<string>"
],
"employmentTypes": [
"<string>"
],
"webUrl": "<string>",
"subtitle": "<string>",
"jobCategory": "<string>",
"workType": "<string>",
"startAt": "<string>",
"endAt": "<string>"
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}Jobs
접근 가능한 회사 공고 목록
회사 공고 중 호출자가 조회 권한을 가진 공고만 반환한다. ENT_JOB_LIST 보유 시 회사 전체, 없으면 ENT_JOB_VIEW 단건 권한 공고만 반환한다. job:manage:read scope 필요.
인증: Authorization: Bearer <jwt> 헤더가 필요하다.
필수 OAuth scope: job:manage:read.
GET
/
api
/
v1
/
companies
/
{companyId}
/
jobs
/
accessible
접근 가능한 회사 공고 목록
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible \
--header 'Authorization: Bearer <token>'import requests
url = "https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible', 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://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/companies/{companyId}/jobs/accessible")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"totalItems": 123,
"totalPages": 123,
"page": 123,
"pageSize": 123,
"items": [
{
"jobId": 123,
"status": "<string>",
"hiring": true,
"title": "<string>",
"seniorities": [
"<string>"
],
"employmentTypes": [
"<string>"
],
"webUrl": "<string>",
"subtitle": "<string>",
"jobCategory": "<string>",
"workType": "<string>",
"startAt": "<string>",
"endAt": "<string>"
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}인증
사용자 컨텍스트 인증용 access token. Authorization: Bearer <jwt> 형식으로 전송한다. OAuth 클라이언트 앱이 Authorization Code + PKCE 흐름으로 발급받은 토큰을 사용한다.
헤더
응답 지원 로케일: ko, en, ja, zh-CN, zh-TW, es, fr, de, pt, th, vi. 미지정 시 ko 기본값
예시:
"ko"
경로 매개변수
회사 handle
Maximum string length:
255Pattern:
^[A-Za-z0-9_-]+$이 페이지가 도움이 되었나요?
⌘I