Glowb Dev Docs
Main API비즈니스 API

GET /business/applicants

캠페인 신청자 조회

캠페인 신청자 조회

특정 캠페인의 신청자 목록을 조회합니다.

항목
메서드GET
경로/business/applicants
인증필요

요청

GET /business/applicants?collab_no=123&state=0 HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
curl "https://api.glowb.com/business/applicants?collab_no=123&state=0" \
  -H "Authorization: Bearer {access_token}"
const params = new URLSearchParams({
  collab_no: '123',
  state: '0'
});

const response = await fetch(`/business/applicants?${params}`, {
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});
const applicants = await response.json();

Query Parameters

Prop

Type

응답

성공 응답 (200 OK)

[
  {
    "applicationId": 123,
    "memberId": "influencer_001",
    "name": "크리에이터명",
    "profileImage": "https://...",
    "followerCount": 50000,
    "appliedAt": "2024-01-15T09:00:00",
    "message": "신청 메시지"
  }
]

Response 스키마

Prop

Type

API 테스트

On this page