Main API인플루언서 API
GET /influence/company/{member_id}/profile
기업 프로필 조회
기업 프로필 조회
특정 기업의 프로필을 조회합니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /influence/company/{member_id}/profile |
| 인증 | 필요 |
요청
GET /influence/company/business_001/profile HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...curl "https://api.glowb.com/influence/company/business_001/profile" \
-H "Authorization: Bearer {access_token}"const response = await fetch(`/influence/company/${memberId}/profile`, {
headers: {
'Authorization': `Bearer ${accessToken}`
}
});
const companyProfile = await response.json();Path Parameters
Prop
Type
응답
성공 응답 (200 OK)
{
"memberId": "business_001",
"businessName": "기업명",
"profileImage": "https://...",
"intro": "기업 소개",
"category": "뷰티",
"campaigns": [
{
"no": 1,
"title": "캠페인 제목",
"status": "RECRUITING"
}
]
}