Main APIAI API
POST /ai/recruit/influencer-rate
인플루언서 단가 제출
인플루언서 단가 제출
외부 인플루언서가 자신의 희망 단가 정보를 제출합니다. 인증 토큰 없이 호출 가능한 공개 API입니다.
| 항목 | 값 |
|---|---|
| 메서드 | POST |
| 경로 | /ai/recruit/influencer-rate |
| 인증 | 불필요 |
| Content-Type | application/json |
요청
POST /ai/recruit/influencer-rate HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"nickname": "핸들명",
"instagramId": "instagram_id",
"contactEmail": "email@example.com",
"whatsappContact": "+62812xxx",
"proposedRate": "500000",
"currency": "IDR"
}curl -X POST "https://api.glowb.com/ai/recruit/influencer-rate" \
-H "Content-Type: application/json" \
-d '{
"nickname": "핸들명",
"instagramId": "instagram_id",
"contactEmail": "email@example.com",
"whatsappContact": "+62812xxx",
"proposedRate": "500000",
"currency": "IDR"
}'const response = await fetch('/ai/recruit/influencer-rate', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
nickname: '핸들명',
instagramId: 'instagram_id',
contactEmail: 'email@example.com',
whatsappContact: '+62812xxx',
proposedRate: '500000',
currency: 'IDR'
})
});
const result = await response.json();Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "인플루언서 단가 정보 저장 완료",
"data": null
}에러 응답 (500)
{
"status": 500,
"code": "INTERNAL_SERVER_ERROR",
"message": "인플루언서 단가 정보 저장 실패",
"data": null
}