Main APIAI API
PATCH /ai/business/update/password
기업 비밀번호 재설정
기업 비밀번호 재설정
비밀번호를 재설정합니다.
| 항목 | 값 |
|---|---|
| 메서드 | PATCH |
| 경로 | /ai/business/update/password |
| 인증 | 불필요 |
| Content-Type | application/json |
요청
PATCH /ai/business/update/password HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"id": "business_id",
"email": "business@example.com",
"newPassword": "new_password123"
}curl -X PATCH "https://api.glowb.com/ai/business/update/password" \
-H "Content-Type: application/json" \
-d '{
"id": "business_id",
"email": "business@example.com",
"newPassword": "new_password123"
}'const response = await fetch('/ai/business/update/password', {
method: 'PATCH',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
id: 'business_id',
email: 'business@example.com',
newPassword: 'new_password123'
})
});
const result = await response.json();Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
{
"message": "비밀번호가 변경되었습니다."
}