| Name | Description |
|---|---|
daily_budget | The daily budget of the campaign. |
lifetime_budget | The lifetime budget of the campaign. |
pacing_type | Pacing type shared across the ad sets in this campaign.
Options:
|
budget_rebalance_flag | Do not use for Advantage campaign budgets. See Ad Set Budget Rebalancing below. |
adset_budgets | The ad set budget to use for each ad set in the campaign. Use this to disable an Advantage campaign budget and to use individual ad set budgets. |
bid_strategy | Bid strategy of the campaign. Options:
If you choose Value as an optimization_goal for LOWEST_COST_WITHOUT_CAP in Ads Manager, we display Highest Value as your bid strategy. |
adset_bid_amounts | The bid amounts to use for ad sets in this campaign when the campaign bid strategy is set to LOWEST_COST_WITH_BID_CAP or COST_CAP. You should set this field along with bid_strategy. |
| Name | Description |
|---|---|
daily_min_spend_target | Daily minimum spending target for the ad set, in your account’s currency. You must specify a daily budget at the ad campaign level. This target does not guarantee you spend this amount, but Facebook makes a best effort to achieve it. To remove daily_min_spend_target from an ad set, set it to 0 or an empty value. For example, daily_min_spend_target=0 or daily_min_spend_target=. |
daily_spend_cap | Daily spend cap of the ad set defined in your account currency. You must specify the daily budget at the ad campaign level. |
lifetime_min_spend_target | Lifetime minimum spend target for an ad set defined in your account currency. You must specify the lifetime budget at the ad campaign level. This target is not a guarantee you achieve the target, but Facebook makes a best effort to reach it. To remove lifetime_min_spend_target from an ad set, set it to 0 or an empty value. For example, lifetime_min_spend_target=0 or lifetime_min_spend_target=. |
lifetime_spend_cap | Lifetime spend cap of the ad set defined in your account currency. You must specify the lifetime budget in the campaign. |
bid_amount | Bid amount for this ad set. Only available when the campaign level is_autobid is set to false. |
bid_constraints | Similar to an ad set budget, minimum Return on Ads Spend bidding (i.e., Min ROAS), uses this to provide the ROAS floor, but you cannot use bid_amount with bid_constraints. See Examples to use Min ROAS with an Advantage campaign budget. |
LOWEST_COST_WITHOUT_CAPbid_strategy set to LOWEST_COST_WITHOUT_CAP. The campaign has a 1000 USD daily budget with auto bid:curl
-F 'name=L3 With Daily Budget' \
-F 'objective=OUTCOME_TRAFFIC' \
-F 'daily_budget=100000' \
-F 'bid_strategy=LOWEST_COST_WITHOUT_CAP' \
-F 'special_ad_categories=NONE' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_AD_ACCOUNT_ID/campaigns
LOWEST_COST_WITH_BID_CAPbid_strategy set toLOWEST_COST_WITH_BID_CAP. The campaign has a 1000 USD lifetime budget:curl
-F 'name=L3 With Lifetime Budget' \
-F 'objective=OUTCOME_TRAFFIC' \
-F 'lifetime_budget=100000' \
-F 'bid_strategy=LOWEST_COST_WITH_BID_CAP' \
-F 'special_ad_categories=NONE' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_AD_ACCOUNT_ID/campaigns
curl \
-F 'campaign_id=<CAMPAIGN_ID>' \
-F 'name=Test Adset No Budget' \
-F 'status=ACTIVE' \
-F 'optimization_goal=LINK_CLICKS' \
-F 'targeting={"geo_locations":{"countries":["US"]},"publisher_platforms": ["facebook","audience_network"],"facebook_positions":["feed"],"device_platforms":["mobile","desktop"]}' \
-F 'billing_event=IMPRESSIONS' \
-F 'bid_amount=100' \
-F 'time_stop=1712888798'
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_AD_ACCOUNT_ID/adsets
LOWEST_COST_WITH_MIN_ROASbid_strategy set to LOWEST_COST_WITH_MIN_ROAS. For example, the campaign has 1000 USD lifetime budget with Min ROAS set:curl
-F 'name=L3 With Lifetime Budget' \
-F 'objective=OUTCOME_SALES' \
-F 'lifetime_budget=100000' \
-F 'bid_strategy=LOWEST_COST_WITH_MIN_ROAS' \
-F 'special_ad_categories=NONE' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_AD_ACCOUNT_ID/campaigns
curl
-F 'name=minRoasBiddingDemo' \
-F 'optimization_goal=VALUE' \
-F 'promoted_object={"pixel_id": <PIXEL_ID>, "custom_event_type": PURCHASE}' \
-F 'targeting={"geo_locations":{"countries":["US"]}}' \
-F 'campaign_id=<CAMPAIGN_ID>' \
-F 'status=PAUSED' \
-F 'time_stop=1712888798' \
-F 'bid_constraints={"roas_average_floor": 10000}' \
-F 'billing_event=IMPRESSIONS' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_AD_ACCOUNT_ID/adsets
AD_SET_ID1 to 5000AD_SET_ID1 to 7000curl
-F 'adset_budgets=[{"adset_id": <AD_SET_ID1>, "daily_budget": 5000}, {"adset_id": <AD_SET_ID2>, "daily_budget": 7000}]'
-F 'access_token=<ACCESS_TOKEN>'
https://graph.facebook.com/v25.0/CAMPAIGN_ID
COST_CAP, and LOWEST_COST_WITH_BID_CAP. For example, the following code sample sets:LOWEST_COST_WITH_BID_CAPAD_SET_ID1 to 1500AD_SET_ID1 to 2000curl
-F 'adset_bid_amounts={"<AD_SET_ID1>": 1500, "<AD_SET_ID2>": 2000}'
-F 'bid_strategy="LOWEST_COST_WITH_BID_CAP"'
-F 'access_token=<ACCESS_TOKEN>'
https://graph.facebook.com/v25.0/CAMPAIGN_ID
LOWEST_COST_WITH_MIN_ROAS, you cannot currently switch to other bid strategies after you create your campaign. See Bid Strategies.pacing_type in the campaign level, not in the ad set level. See Pacing and Scheduling.