Glowb Dev Docs
Main API비즈니스 API

GET /business/profile

기업 프로필 조회

프로필 조회

기업 프로필 정보를 조회합니다.

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

요청

GET /business/profile HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
curl "https://api.glowb.com/business/profile" \
  -H "Authorization: Bearer {access_token}"
const response = await fetch('/business/profile', {
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});
const profile = await response.json();

응답

성공 응답 (200 OK)

{
  "id": "business_id",
  "businessName": "기업명",
  "managerName": "담당자명",
  "email": "business@example.com",
  "phone": "010-1234-5678",
  "profileImage": "https://...",
  "intro": "기업 소개",
  "category": "뷰티"
}

Response 스키마

Prop

Type

API 테스트

On this page