지원자 상세 조회

지원자 상세

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

지원자의 상세 정보를 반환합니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Path Parameters

Name
Type
필수
Description

code

string

required

지원자 고유 코드

응답 예제

{
   "resource": {
      "code": "code_abc123def456",
      "name": "김지원",
      "email": "[email protected]",
      "phone": "010-1234-5678",
      "duplicate": false,
      "duplicate_job": false,
      "reapply": false,
      "feedback_kind": "interview",
      "feedback_status": "ongoing",
      "feedback_result": null,
      "feedback_score": null,
      "feedback_score_count": 1,
      "feedback_score_total_count": 3,
      "education_final_kind": "university_4",
      "experience_total_period": 36,
      "interest": null,
      "birth": "1990-01-15",
      "privacy": true,
      "resume_path": "https://example.com/resume.pdf",
      "desired_salary": 50000000,
      "current_salary": 45000000,
      "expected_fee": null,
      "applied_at": "2024-09-02T18:56:37+09:00",
      "created_at": "2024-09-02T18:56:37+09:00",
      "job": {
         "code": "code_job123",
         "title": "프론트엔드 개발자 채용",
         "url": "https://company.recruit.roundhr.com/c/code_job123",
         "deleted": false,
         "created_at": "2024-09-02T18:56:37+09:00",
         "updated_at": "2024-09-02T18:56:37+09:00"
      },
      "job_stage": {
         "stage_kind": "interview",
         "title": "1차 면접",
         "created_at": "2024-09-02T18:56:37+09:00",
         "updated_at": "2024-09-02T18:56:37+09:00"
      }
   }
}

응답 필드 설명

Field
Type
Description

code

string

지원자 고유 코드

name

string

지원자 이름

email

string

지원자 이메일

phone

string

지원자 전화번호

duplicate

boolean

중복 지원 여부

duplicate_job

boolean

동일 공고 중복 지원 여부

reapply

boolean

재지원 여부

feedback_kind

string

평가 종류 (review, interview, assignment 등)

feedback_status

string

평가 상태 (ongoing, complete, expire)

feedback_result

string

평가 결과

feedback_score

integer

평가 점수

feedback_score_count

integer

완료된 평가자 수

feedback_score_total_count

integer

전체 평가자 수

education_final_kind

string

최종 학력

experience_total_period

integer

총 경력 기간 (월 단위)

applied_at

string

지원 일시

job

object

지원한 공고 정보

job_stage

object

현재 채용 단계 정보

Last updated