Admin APIAdmin Pending Participants API
GET .../memos — 메모 목록
특정 신청의 메모를 최신순으로 조회합니다.
메모 목록
특정 신청(applicationId)에 작성된 메모(MEMO)를 occurred_at DESC 로 페이지네이션 조회합니다.
HTTP 요청
GET /ai/admin/campaigns/{campaignNo}/pending-participants/{applicationId}/memos
Authorization: Bearer {access_token}Path Parameters
| 파라미터 | 타입 | 필수 | 설명 |
|---|---|---|---|
campaignNo | int | 예 | 캠페인 번호 |
applicationId | long | 예 | 신청 ID |
Query Parameters
| 파라미터 | 타입 | 필수 | 기본값 |
|---|---|---|---|
page | int | 아니오 | 0 |
size | int | 아니오 | 20 |
응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "메모 조회 성공",
"data": {
"content": [
{
"id": 2001,
"pendingCase": "CONTRACT_UNSIGNED",
"summary": "이사 중",
"note": "다음 주부터 응답 가능",
"occurredAt": "2026-04-13T16:00:00",
"actorId": "admin02",
"createdAt": "2026-04-13T16:00:03",
"updatedAt": null
}
],
"totalElements": 3,
"totalPages": 1,
"number": 0,
"size": 20
}
}| 필드 | 설명 |
|---|---|
updatedAt | 메모 수정 시 갱신. 미수정이면 null |