Admin APIAdmin Pending Participants API
GET .../contact-logs — 연락 이력 목록
특정 신청의 연락 이력을 최신순으로 조회합니다.
연락 이력 목록
특정 신청(applicationId)에 대해 기록된 연락 이력(CONTACT)을 occurred_at DESC 로 페이지네이션 조회합니다.
HTTP 요청
GET /ai/admin/campaigns/{campaignNo}/pending-participants/{applicationId}/contact-logs
Authorization: Bearer {access_token}Path Parameters
| 파라미터 | 타입 | 필수 | 설명 |
|---|---|---|---|
campaignNo | int | 예 | 캠페인 번호 |
applicationId | long | 예 | 신청 ID |
Query Parameters
| 파라미터 | 타입 | 필수 | 기본값 |
|---|---|---|---|
page | int | 아니오 | 0 |
size | int | 아니오 | 20 |
정렬은
occurred_at DESC고정이며sort파라미터는 무시됩니다.
응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "연락 이력 조회 성공",
"data": {
"content": [
{
"id": 1001,
"pendingCase": "CONTRACT_UNSIGNED",
"method": "PHONE",
"summary": "부재중",
"note": "내일 재통화",
"occurredAt": "2026-04-13T14:30:00",
"actorId": "admin01",
"createdAt": "2026-04-13T14:30:05"
}
],
"totalElements": 5,
"totalPages": 1,
"number": 0,
"size": 20
}
}