Main API제안 API
GET /proposal/search
역제안 목록 조회
역제안 목록 조회
기업이 받은 역제안 목록을 조회합니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /proposal/search |
| 인증 | 필요 |
요청
GET /proposal/search
Authorization: Bearer {access_token}응답
성공 응답 (200 OK)
[
{
"memberId": "influencer_001",
"name": "크리에이터명",
"profileImage": "https://...",
"followerCount": 50000,
"category": "뷰티",
"platform": "인스타그램"
}
]Response 스키마 (InfluenceProfileDto)
| 필드명 | 타입 | 설명 |
|---|---|---|
memberId | string | 인플루언서 ID |
name | string | 이름 |
profileImage | string | 프로필 이미지 URL |
followerCount | int | 팔로워 수 |
category | string | 카테고리 |
platform | string | 주요 플랫폼 |