Main API인플루언서 API
POST /influence/signup
인플루언서 회원가입
회원가입
인플루언서 회원가입을 처리합니다.
| 항목 | 값 |
|---|---|
| 메서드 | POST |
| 경로 | /influence/signup |
| 인증 | 불필요 |
요청
POST /influence/signup HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"member": {
"id": "influencer_id",
"email": "influencer@example.com"
},
"influence": {
"name": "크리에이터명",
"category": "뷰티"
}
}curl -X POST "https://api.glowb.com/influence/signup" \
-H "Content-Type: application/json" \
-d '{
"member": {"id": "influencer_id", "email": "influencer@example.com"},
"influence": {"name": "크리에이터명", "category": "뷰티"}
}'const response = await fetch('/influence/signup', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
member: {
id: 'influencer_id',
email: 'influencer@example.com'
},
influence: {
name: '크리에이터명',
category: '뷰티'
}
})
});Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
success