Glowb Dev Docs
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"
    }
  ]
}

API 테스트

On this page