Advantage+ App Campaigns & Advantage+ Catalog Ads
Updated: May 21, 2026
Copy for LLM
Ads in WhatsApp Status are available via the Marketing API. Learn more about ads in WhatsApp Status.
Advantage+ app campaigns (formerly known as Automated App Ads (AAA)) use powerful machine learning and automated systems to help your app install ads drive more of the results you value, scale campaigns with sustained performance, and ultimately help you work more efficiently. You can now create Advantage+ catalog ads with the existing Advantage+ app campaigns API. See the Advantage+ app campaigns API documentation for more information on creating your campaigns.
There are no changes to ad campaign and ad set creation, and the dynamic capability is introduced only in the creatives. This document will detail the creation of an Advantage+ catalog ad creative and how to use it in your ads.
Provide a creative and create ads
Once you have an ad set, you can create your ad by sending a
POST request to the /act_{ad_account_id}/ads endpoint.Request
curl -X POST \
-F 'name=Advantage+ app campaigns sample ad' \
-F 'adset_id=ADSET_ID' \
-F 'creative={"name": NAME, "object_story_spec": SPEC, "product_set_id": PRODUCT_SET_ID}' \
-F 'access_token=ACCESS_TOKEN' \
https://graph.facebook.com/v26.0/act_AD_ACCOUNT_ID/ads
Parameters
| Name | Description |
|---|---|
name
string
| Required. Name of the ad. |
adset_id
int-64
| Required. The ID of the ad set, required on creation. |
creative
AdCreative
| Required. The creative spec of the ad creative to be used by this ad. Values:Â object_story_spec, product_set_id, use_page_actor_overrideProvide a creative spec:
|
status
enum
| Optional. Only ACTIVE and PAUSED are valid during creation. During testing, set ads to a PAUSED status to avoid accidental spend. |
adlabels
list<Object>
| Optional. Ad labels associated with this ad. |
execution_options
list<enum>
| Optional. Values:
If the call passes validation or review, the response will be {"success": true}. If the call does not pass, an error will be returned with more details. |
Updating
Request
curl -X POST \
-F 'name=Advantage+ app campaigns sample update ad' \
-F 'creative={"name": NAME, "object_story_spec": SPEC, "product_set_id": PRODUCT_SET_ID}' \
-F 'access_token=ACCESS_TOKEN' \
https://graph.facebook.com/v26.0/AD_ID
Parameters
| Name | Description |
|---|---|
name
string
| New name of the ad. |
adlabels
list<Object>
| Ad labels associated with this ad. |
execution_options
list<enum>
| Optional. Values:
If the call passes validation or review, the response will be {"success": true}. If the call does not pass, an error will be returned with more details. |
status
enum
| Values:Â ACTIVE, PAUSED, DELETED, ARCHIVEDDuring testing, set ads to a PAUSED status to avoid accidental spend. |
creative
AdCreative
| The creative spec of the ad creative to be used by this ad. Values:Â object_story_spec, product_set_id, use_page_actor_overrideProvide a creative spec:
|