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 #550

Closed
AYoungSn opened this issue Feb 14, 2024 · 0 comments
Closed

✨ [Feature] 공고 전체 조회 API #550

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

Comments

@AYoungSn
Copy link
Contributor

AYoungSn commented Feb 14, 2024

Description

  • 공고 전체 조회
  • 정렬 순서 : 최근순 (공고 종료일 기준 내림차순 정렬)

Request

URI

GET /admin/recruitments?page=${page}&size=${size}

Request Param

  • page
    • 범위 : [1, ]
  • size
    • 범위 : [1, 20]

Response

Status Code

  • 200

Response Body

  • recruitment 리스트
    • recruitment id
    • 공고 시작일
    • 공고 종료일
    • title
    • isFinish 모집이 완료되었는지 아닌지
    • generation (기수)
  • totalPage : 페이지네이션
{
    "recruitments" : [ {
        id: Number,
        startDate : 'yyyy-mm-ddThh:mm:ss`,
        endDate : 'yyyy-mm-ddThh:mm:ss`,
        title: String,
        isFinish: Boolean,
        generation: String”
        }, ...],
    "totalPage": Number
}
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
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants