Data Management APIs
- Allocation
- Activity Log
- Audience
- Audience Attribute
- Audience Segment
- Auth and User
- Campaign
- Catalog
- Creative
- Analytic
- Billing
- System
- License
- Media Library
- Placement Catalog
- Placement
Decision APIs
- Cache Management
- Configuration
- Ad Serving
- Ad Log
- Activity Log
Campaign
Create a campaign
새로운 광고 캠페인을 생성하고 생성된 캠페인을 반환합니다.
엑세스 제어:
- 관리자와 광고주 계정은 캠페인을 생성할 수 있습니다.
- 리테일러 계정은 캠페인을 생성할 수 없습니다.
POST
/
campaigns
Copy
curl --request POST \
--url https://your_a2_service/campaigns \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"audience_segments": {},
"bid_strategy": "highest_volume",
"budget": 0,
"created_at": "2023-11-07T05:31:56Z",
"crid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"daily_budget": 123,
"description": "<string>",
"end_date": "2023-11-07T05:31:56Z",
"goal": "click",
"max_bid": 0,
"min_daily_imp": 1000,
"name": "<string>",
"owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"start_date": "2023-11-07T05:31:56Z",
"status": "okay",
"sub_goal": "<string>",
"tagid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_cpa": 0,
"target_cpm": 0,
"target_volume": 0,
"updated_at": "2023-11-07T05:31:56Z"
}'
Copy
{
"audience_segments": {},
"bid_strategy": "highest_volume",
"budget": 0,
"created_at": "2023-11-07T05:31:56Z",
"crid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"daily_budget": 123,
"description": "<string>",
"end_date": "<string>",
"goal": "click",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"max_bid": 0,
"min_daily_imp": 1000,
"name": "<string>",
"no": 123,
"owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"start_date": "<string>",
"status": "okay",
"sub_goal": "<string>",
"tagid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_cpa": 0,
"target_cpm": 0,
"target_volume": 0,
"updated_at": "2023-11-07T05:31:56Z"
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
캠페인 생성을 위한 스키마
Response
200
application/json
Successful Response
캠페인의 모든 속성을 정의한 스키마
Copy
curl --request POST \
--url https://your_a2_service/campaigns \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"audience_segments": {},
"bid_strategy": "highest_volume",
"budget": 0,
"created_at": "2023-11-07T05:31:56Z",
"crid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"daily_budget": 123,
"description": "<string>",
"end_date": "2023-11-07T05:31:56Z",
"goal": "click",
"max_bid": 0,
"min_daily_imp": 1000,
"name": "<string>",
"owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"start_date": "2023-11-07T05:31:56Z",
"status": "okay",
"sub_goal": "<string>",
"tagid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_cpa": 0,
"target_cpm": 0,
"target_volume": 0,
"updated_at": "2023-11-07T05:31:56Z"
}'
Copy
{
"audience_segments": {},
"bid_strategy": "highest_volume",
"budget": 0,
"created_at": "2023-11-07T05:31:56Z",
"crid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"daily_budget": 123,
"description": "<string>",
"end_date": "<string>",
"goal": "click",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"max_bid": 0,
"min_daily_imp": 1000,
"name": "<string>",
"no": 123,
"owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"start_date": "<string>",
"status": "okay",
"sub_goal": "<string>",
"tagid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"target_cpa": 0,
"target_cpm": 0,
"target_volume": 0,
"updated_at": "2023-11-07T05:31:56Z"
}
어시스턴트
Responses are generated using AI and may contain mistakes.