Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ [Feature] 지원자 목록 확인 API #553

Closed
AYoungSn opened this issue Feb 14, 2024 · 0 comments · Fixed by #808
Closed

✨ [Feature] 지원자 목록 확인 API #553

AYoungSn opened this issue Feb 14, 2024 · 0 comments · Fixed by #808
Assignees
Labels
enhancement New feature or request

Comments

@AYoungSn
Copy link
Contributor

AYoungSn commented Feb 14, 2024

Description

  • 공고별 필터링
  • 주관식 검색 필터링
  • 체크리스트 선택 필터링

Request

URI

GET /admin/recruitments/{recruit_id}/applications?question={question_id}&checks={checklist_id,checklist_id,...}&search={문자열}

Request Param

  • page : 1 이상
  • size : [1, 20]
  • question : question id
  • checks : check list id를 ,로 구분해서
    • ex) checks=1,3,5
  • search : 주관식 답변에 대한 검색 문자열

Response

Status Code

  • 200

Response Body

  • applicants 리스트
    • application id
    • intra id
    • status : 합격, 불합격, 심사중
    • form
{
  applications: [{
    applicationId: number,
    intraId: string,
    status: string,
    forms: [{
      questionId: number,
      question: string,
      inputType: string,
      answer?: string,
      checkedList?: [{checkId: number, content: string},,,]
    }]
  }]
}

// input type 에 따라 text 인경우

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
2 participants