Glowb Dev Docs
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

파라미터타입필수설명
campaignNoint캠페인 번호
applicationIdlong신청 ID

Query Parameters

파라미터타입필수기본값
pageint아니오0
sizeint아니오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
  }
}

API 테스트

On this page