면접 상세 조회

면접 상세

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

특정 면접의 상세 정보를 반환합니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Path Parameters

Name
Type
필수
Description

code

string

required

면접 고유 코드

응답 예제

{
   "resource": {
      "code": "code_interview123",
      "kind": "individual",
      "number": 1,
      "status": "confirmed",
      "created_at": "2024-09-02T18:56:37+09:00",
      "updated_at": "2024-09-05T10:30:00+09:00",
      "candidate": {
         "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",
         "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"
         }
      },
      "schedule": {
         "code": "code_schedule123",
         "status": "confirmed",
         "start_at": "2024-09-10T14:00:00+09:00",
         "end_at": "2024-09-10T15:00:00+09:00"
      }
   }
}

응답 필드 설명

Field
Type
Description

code

string

면접 고유 코드

kind

string

면접 종류 (individual: 개별, group: 그룹, oneday: 원데이)

number

integer

면접 차수

status

string

면접 상태

candidate

object

지원자 정보

schedule

object

면접 일정 정보

status 값

Value
Description

draft

임시 저장

init

초기 상태

waiting

대기중

member_confirm

면접관 확인 대기

candidate_select

지원자 선택 대기

confirmed

면접 확정

interview_progress

면접 진행중

interview_completed

면접 완료

canceled

취소됨

archived

보관됨

schedule 필드

Field
Type
Description

code

string

일정 고유 코드

status

string

일정 상태 (waiting, confirmed 등)

start_at

string

면접 시작 시간 (ISO 8601 형식)

end_at

string

면접 종료 시간 (ISO 8601 형식)

Last updated