Glowb Dev Docs
Main APIAI API

PATCH /ai/business/info

기업 정보 수정

기업 정보 수정

기업 정보를 수정합니다.

항목
메서드PATCH
경로/ai/business/info
인증필요
Content-Typeapplication/json

요청

PATCH /ai/business/info HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
Content-Type: application/json

{
  "businessName": "기업명",
  "managerName": "담당자명",
  "phone": "010-1234-5678"
}
curl -X PATCH "https://api.glowb.com/ai/business/info" \
  -H "Authorization: Bearer {access_token}" \
  -H "Content-Type: application/json" \
  -d '{
    "businessName": "기업명",
    "managerName": "담당자명",
    "phone": "010-1234-5678"
  }'
const response = await fetch('/ai/business/info', {
  method: 'PATCH',
  headers: {
    'Authorization': `Bearer ${accessToken}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    businessName: '기업명',
    managerName: '담당자명',
    phone: '010-1234-5678'
  })
});
const result = await response.json();

Request Body 스키마

Prop

Type

응답

성공 응답 (200 OK)

{
  "message": "기업 정보가 수정되었습니다."
}

API 테스트

On this page