Glowb Dev Docs
SaaS APICollab 이벤트 API

POST /ai/collab/mypage/select

신청한 캠페인 조회

신청한 캠페인 조회

사용자가 신청한 캠페인 목록을 조회합니다.

항목
메서드POST
경로/ai/collab/mypage/select
인증필요
Content-Typeapplication/json

요청

POST /ai/collab/mypage/select HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
Content-Type: application/json

{
  "user_id": "user123"
}
curl -X POST "https://api.glowb.com/ai/collab/mypage/select" \
  -H "Authorization: Bearer {access_token}" \
  -H "Content-Type: application/json" \
  -d '{"user_id": "user123"}'
const response = await fetch('/ai/collab/mypage/select', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${accessToken}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    user_id: 'user123'
  })
});
const myCampaigns = await response.json();

Request Body 스키마

Prop

Type

응답

성공 응답 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "신청한 캠페인 목록 조회 완료",
  "data": [
    {
      "no": 1,
      "title": "여름 뷰티 캠페인",
      "thumbnail": "https://...",
      "platform": "INSTAGRAM",
      "applicationStatus": "PENDING",
      "appliedAt": "2024-07-01T10:00:00"
    }
  ]
}

Response 스키마

Prop

Type

API 테스트

On this page