리소스 단위 권한 조회(정밀 체크/목록)
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles \
--header 'Authorization: Bearer <token>'import requests
url = "https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles"
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/me/company-permissions/{companyPermalink}/resource-roles', 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/me/company-permissions/{companyPermalink}/resource-roles",
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/me/company-permissions/{companyPermalink}/resource-roles"
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/me/company-permissions/{companyPermalink}/resource-roles")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles")
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{
"items": [
{
"resourceType": "EVENT",
"resourceId": "9876",
"capabilities": [
"<string>"
]
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}Me
리소스 단위 권한 조회(정밀 체크/목록)
특정 리소스(이벤트/공고)에 대한 수행 가능 Open API 작업(capabilities). resourceId 지정 시 정밀 체크(0~1건), 미지정 시 회사 전역 권한 또는 리소스 직접 권한으로 접근 가능한 리소스 목록(페이지네이션). JOB 목록은 draft 를 제외한다. 응답은 항상 items 리스트. company:manage:read scope 필요.
인증: Authorization: Bearer <jwt> 헤더가 필요하다.
필수 OAuth scope: company:manage:read.
GET
/
api
/
v1
/
me
/
company-permissions
/
{companyPermalink}
/
resource-roles
리소스 단위 권한 조회(정밀 체크/목록)
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles \
--header 'Authorization: Bearer <token>'import requests
url = "https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles"
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/me/company-permissions/{companyPermalink}/resource-roles', 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/me/company-permissions/{companyPermalink}/resource-roles",
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/me/company-permissions/{companyPermalink}/resource-roles"
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/me/company-permissions/{companyPermalink}/resource-roles")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/me/company-permissions/{companyPermalink}/resource-roles")
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{
"items": [
{
"resourceType": "EVENT",
"resourceId": "9876",
"capabilities": [
"<string>"
]
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}{
"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"
경로 매개변수
회사 식별자(permalink)
쿼리 매개변수
리소스 타입(EVENT|JOB)
정밀 체크 대상 리소스 식별자(문자열). 미지정 시 목록 모드.
목록 모드 페이지(1부터)
목록 모드 페이지 크기(1~50, 기본 20)
응답
조회 성공(권한 없으면 빈 items).
리소스 단위 권한. resourceId 지정=정밀 체크(0~1건), 미지정=접근 가능 리소스 목록(페이지네이션).
Show child attributes
Show child attributes
이 페이지가 도움이 되었나요?
⌘I