Admin APIMeta Marketing Insights
GET /ai/business/meta/campaigns
Meta 광고 캠페인 목록 조회 (기업 회원용)
캠페인 목록 조회
광고 계정의 전체 캠페인 목록을 조회합니다.
결과는 Redis에 1시간 캐싱됩니다.
HTTP 요청
GET /ai/business/meta/campaigns
Authorization: Bearer {business_access_token}응답
성공 응답 (200 OK)
{
"status": 200,
"code": null,
"message": "캠페인 목록 조회 완료",
"data": [
{
"id": "123456789",
"name": "봄 시즌 프로모션",
"status": "ACTIVE",
"objective": "OUTCOME_TRAFFIC",
"dailyBudget": "10000",
"lifetimeBudget": null,
"startTime": "2024-03-01T00:00:00+0000",
"stopTime": null
}
]
}응답 필드 설명
| 필드 | 타입 | 설명 |
|---|---|---|
id | String | 캠페인 ID |
name | String | 캠페인명 |
status | String | 상태 (ACTIVE, PAUSED, DELETED, ARCHIVED) |
objective | String | 캠페인 목표 (예: OUTCOME_TRAFFIC, OUTCOME_AWARENESS) |
dailyBudget | String | 일일 예산 (센트 단위) |
lifetimeBudget | String | 총 예산 (센트 단위) |
startTime | String | 시작 시간 |
stopTime | String | 종료 시간 |