| Ad set 1 | Ad set 2 | Description | |
|---|---|---|---|
Daily budget | $10 | $20 | This is the average an ad set may spend per day. |
Daily budget flexibility | 75% | 75% | There may be certain days when better opportunities are available. On those days, we may spend up to 75% over your daily budget. |
Shared budget per day | $2 | $4 | Up to 20% of your budget is shared with other ad sets to maximize performance. |
Shared budget per week | $14 | $28 | This is 7 times your shared ad set budget per day. |
Maximum daily spend | $21 | $42 | Your maximum daily spend includes daily budget flexibility and shared budget ((Daily budget + shared budget a day) x 1.75)) |
Maximum weekly ad set spend | $84 | $168 | Your maximum weekly spend per ad set ((Daily budget + shared budget a day) x 7 days)) |
is_adset_budget_sharing_enabled field by making read request to campaign.curl -X GET \ -d 'fields="is_adset_budget_sharing_enabled"' \ -d 'access_token=<ACCESS_TOKEN>' \ https://graph.facebook.com/v23.0/<CAMPAIGN_ID>/
| Parameter | Description |
|---|---|
is_adset_budget_sharing_enabled | Whether the child ad sets are managed under ad set budget sharing. With ad set budget sharing, advertisers can now share up to 20% of their budget with other ad sets in the same campaign. |
{is_adset_budget_sharing_enabled: True }
| Error | Description |
|---|---|
613 | Calls to this api have exceeded the rate limit. |
is_adset_budget_sharing_enabled field. Starting with v24.0+, you must pass either “True” or “False” to this field if you plan on setting a budget at the adset level, meaning you are not passing in the campaign budget during the campaign creation. Passing in “True” to that field will turn on the optimization. You do not need to pass this field if you are using a campaign budget, meaning you set either daily_budget or lifetime_budget at the campaign level.curl -X POST \ -F 'name="My campaign"' \ -F 'objective="OUTCOME_TRAFFIC"' \ -F 'status="PAUSED"' \ -F 'is_adset_budget_sharing_enabled="True"' \ -F 'special_ad_categories=[]' \ -F 'access_token=<ACCESS_TOKEN>' \ https://graph.facebook.com/v23.0/act_<AD_ACCOUNT_ID>/campaigns
| Parameter | Description |
|---|---|
is_adset_budget_sharing_enabled | Whether the child ad sets are managed under ad set budget sharing. With ad set budget sharing, advertisers can now share up to 20% of their budget with other ad sets in the same campaign. |
{ id: numeric string }
| Error | Description |
|---|---|
4834005 | You cannot enable ad set budget sharing without bid strategy. |
4834002 | You cannot use ad set budget sharing with campaign budget. Please disable ad set budget sharing or use ad set budget. |
4834009 | Must have uniform spec when creating an ad set with ad set budget sharing enabled in the parent campaign. |
4834009 | Must have uniform spec when creating an ad set with ad set budget sharing enabled in the parent campaign. |
4834011 | Must specify True or False in is_adset_budget_sharing_enabled field. This is required field starting v24 if you are not setting budget at the campaign level |
is_adset_budget_sharing_enabled field set to False.curl -X POST \ -F 'is_adset_budget_sharing_enabled="False"' \ -F 'access_token=<ACCESS_TOKEN>' \ https://graph.facebook.com/v23.0/<CAMPAIGN_ID>/
| Parameter | Description |
|---|---|
is_adset_budget_sharing_enabled | Whether the child ad sets are managed under ad set budget sharing. With ad set budget sharing, advertisers can now share up to 20% of their budget with other ad sets in the same campaign. |
{ success: true }
| Error | Description |
|---|---|
3858418 | Budget flex cannot be enabled on a running campaign. Please create a new campaign to use budget flex. |
4834006 | You cannot change bid strategy midflight when ad set budget sharing is enabled |