SaaS APICollab 이벤트 API
POST /ai/collab/application/insert
캠페인 신청
캠페인 신청
인플루언서가 캠페인에 신청합니다.
| 항목 | 값 |
|---|---|
| 메서드 | POST |
| 경로 | /ai/collab/application/insert |
| 인증 | 불필요 |
| Content-Type | application/json |
요청
POST /ai/collab/application/insert HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"collab_no": 123,
"user_id": "user123",
"message": "신청 메시지"
}curl -X POST "https://api.glowb.com/ai/collab/application/insert" \
-H "Content-Type: application/json" \
-d '{
"collab_no": 123,
"user_id": "user123",
"message": "신청 메시지"
}'const response = await fetch('/ai/collab/application/insert', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
collab_no: 123,
user_id: 'user123',
message: '신청 메시지'
})
});
const result = await response.json();Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "캠페인 신청이 완료되었습니다.",
"data": null
}에러 응답
| 상태 코드 | 메시지 |
|---|---|
| 400 | 이미 신청한 캠페인입니다 |
| 400 | 모집이 마감된 캠페인입니다 |