Glowb Dev Docs
SaaS API가이드라인 AI 생성 입력

GET /ai/guideline/generation/{collabNo}/input

저장된 AI 생성 입력 조회

AI 생성 입력 조회

해당 캠페인에 저장된 generationInput 을 조회합니다.

항목
메서드GET
경로/ai/guideline/generation/{collabNo}/input
인증불필요

요청

GET /ai/guideline/generation/123/input HTTP/1.1
Host: api.glowb.io
curl "https://api.glowb.io/ai/guideline/generation/123/input"

Path Parameters

Prop

Type

응답

데이터 있을 때 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "AI 생성 입력 조회 완료",
  "data": {
    "productLink": "https://shop.example.com/products/glowb-cream",
    "conceptText": "20대 후반 여성 타깃, 데일리 사용 후기 톤...",
    "fileUrls": [
      "https://glowb-input.s3.../1714435200000_b7c1...pdf"
    ],
    "referenceLinks": ["https://www.instagram.com/reel/xxxx"],
    "generatedAt": "2026-04-30T02:30:00Z"
  }
}

데이터 없을 때 (200 OK)

가이드라인 도큐먼트가 아직 없거나, 도큐먼트는 있지만 generationInput 이 저장되지 않은 경우 data: null 로 응답합니다.

{
  "status": 200,
  "code": null,
  "message": "AI 생성 입력 조회 완료",
  "data": null
}

응답 필드 (data 가 null 이 아닐 때)

Prop

Type

On this page