Glowb Dev Docs
SaaS APICollab 이벤트 API

GET /ai/collab/{collab_no}

캠페인 상세 조회 (인증)

캠페인 상세 조회 (인증)

로그인한 사용자가 캠페인의 상세 정보를 조회합니다. 추가 정보가 포함됩니다.

항목
메서드GET
경로/ai/collab/\{collab_no\}
인증필요

요청

GET /ai/collab/123 HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
curl "https://api.glowb.com/ai/collab/123" \
  -H "Authorization: Bearer {access_token}"
const response = await fetch(`/ai/collab/${collabNo}`, {
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});
const campaign = await response.json();

Path Parameters

Prop

Type

응답

성공 응답 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "캠페인 상세 조회 완료",
  "data": {
    "no": 123,
    "title": "여름 뷰티 캠페인",
    "description": "신제품 리뷰 캠페인입니다.",
    "thumbnail": "https://...",
    "platform": "INSTAGRAM",
    "status": "RECRUITING",
    "isOwner": true,
    "applications": [...]
  }
}

Response 스키마

Prop

Type

API 테스트

On this page