SaaS APICollab 이벤트 API
POST /ai/collab/review/insert
리뷰 작성
리뷰 작성
캠페인에 대한 리뷰를 작성합니다.
| 항목 | 값 |
|---|---|
| 메서드 | POST |
| 경로 | /ai/collab/review/insert |
| 인증 | 불필요 |
| Content-Type | application/json |
요청
POST /ai/collab/review/insert HTTP/1.1
Host: api.glowb.com
Content-Type: application/json
{
"collab_no": 123,
"user_id": "user123",
"rating": 5,
"content": "리뷰 내용입니다."
}curl -X POST "https://api.glowb.com/ai/collab/review/insert" \
-H "Content-Type: application/json" \
-d '{
"collab_no": 123,
"user_id": "user123",
"rating": 5,
"content": "리뷰 내용입니다."
}'const response = await fetch('/ai/collab/review/insert', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
collab_no: 123,
user_id: 'user123',
rating: 5,
content: '리뷰 내용입니다.'
})
});
const result = await response.json();Request Body 스키마
Prop
Type
응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "리뷰가 등록되었습니다.",
"data": null
}