Main APIAI API
POST /ai/member/signup/business
기업 회원가입 (AI 포트폴리오)
기업 회원가입 (AI 포트폴리오)
AI 포트폴리오 서비스용 기업 회원가입입니다.
| 항목 | 값 |
|---|---|
| 메서드 | POST |
| 경로 | /ai/member/signup/business |
| 인증 | 불필요 |
| Content-Type | application/json |
요청
POST /ai/member/signup/business HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"id": "business_id",
"password": "password123",
"email": "business@example.com",
"businessName": "기업명",
"managerName": "담당자명",
"phone": "010-1234-5678"
}curl -X POST "https://api.glowb.com/ai/member/signup/business" \
-H "Content-Type: application/json" \
-d '{
"id": "business_id",
"password": "password123",
"email": "business@example.com",
"businessName": "기업명",
"managerName": "담당자명",
"phone": "010-1234-5678"
}'const response = await fetch('/ai/member/signup/business', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
id: 'business_id',
password: 'password123',
email: 'business@example.com',
businessName: '기업명',
managerName: '담당자명',
phone: '010-1234-5678'
})
});
const result = await response.json();Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
{
"status": 200,
"message": "회원가입 성공"
}