지원서 상세

지원서 상세

GET https://api.roundhr.com/v1/application_forms/{code}

등록하신 공고의 지원서 상세 내용을 반환합니다.

요청 예제

curl --request 'GET' \
     --url 'https://api.roundhr.com/v1/application_forms/{code}' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer MY_API_KEY'

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
필수
Description
parameter type

code

string

required

지원서의 고유 코드

path

응답 예제

{
   "resource":{
      "uri": "https://api.roundhr.com/v1/{path}/{code}"
      "code": "formcode_ExAmPlE",
      "status": "in_progress",
      "career_kind": "not_required",
      "career_start": 2,
      "career_end": 5,
      "employment_type": "full_time",
      "employment_type": "full_time",
      "intro_content": "<p>올인원 채용솔루션 RoundHR 입니다.</p>"
      "main_task_content": "<p>신규 Lead 발굴을 위한 B2B영업</p>",
      "requirement_content": "<p>경력 1~4년</p>",
      "preferred_point_content": "<p>HR관련 서비스 세일즈 경험 있으신 분</p>",
      "benefit_content": "<p>전문적인 B2B SaaS 비즈니스 영업 커리어를 쌓을 수 있어요.</p>"
      "end_at": "2025-12-31T00:00:00+09:00",
      "expired": false,
      "created_at": "2025-01-01T10:00:00+09:00",
      "updated_at": "2025-01-01T10:00:00+09:00",
      "questions": [
         {
             "kind": "name",
             "title": "이름",
             "order": 0,
             "required": true,
             "show_description": false,
             "description": null,
             "answer_options": null,
             "created_at": "2025-01-01T10:00:00+09:00",
             "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
             "kind": "email",
             "title": "이메일",
             "order": 1,
             "required": true,
             "show_description": false,
             "description": null,
             "answer_options": null,
             "created_at": "2025-01-01T10:00:00+09:00",
             "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
             "kind": "phone",
             "title": "연락처",
             "order": 2,
             "required": true,
             "show_description": false,
             "description": null,
             "answer_options": null,
             "created_at": "2025-01-01T10:00:00+09:00",
             "updated_at": "2025-01-01T10:00:00+09:00"

         },
         {
            "kind": "resume",
            "title": "이력서",
            "order": 3,
            "required": true,
            "show_description": false,
            "description": null,
            "answer_options": null,
            "created_at": "2025-01-01T10:00:00+09:00",
            "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
            "kind": "gender",
            "title": "성별",
            "order": 4,
            "required": true,
            "show_description": false,
            "description": "",
            "answer_options": [],
            "created_at": "2025-01-01T10:00:00+09:00",
            "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
            "kind": "birth",
            "title": "생년월일",
            "order": 5,
            "required": true,
            "show_description": false,
            "description": "",
            "answer_options": [],
            "created_at": "2025-01-01T10:00:00+09:00",
            "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
            "kind": "military_service",
            "title": "병역사항",
            "order": 6,
            "required": true,
            "show_description": false,
            "description": "",
            "answer_options": [],
            "created_at": "2025-01-01T10:00:00+09:00",
            "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
            "kind": "text",
            "title": "단답형",
            "order": 7,
            "required": true,
            "show_description": false,
            "description": "",
            "answer_options": [],
            "created_at": "2025-01-01T10:00:00+09:00",
            "updated_at": "2025-01-01T10:00:00+09:00"
         },
         {
            "kind": "radio",
            "title": "단일선택",
            "order": 8,
            "required": true,
            "show_description": false,
            "description": "",
            "answer_options": [
              "항목 1",
              "항목 2"
            ],
            "created_at": "2025-02-05T16:43:54+09:00",
            "updated_at": "2025-02-05T16:43:54+09:00"
         }
      ]
   }
}

Last updated

Was this helpful?