Advantage+ app campaigns (formaerly 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. We are introducing the ability to 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 a Advantage+ catalog ad creative and how to use it in your 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.
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/v21.0
/act_AD_ACCOUNT_ID/ads
Name | Description |
---|---|
string | Required. |
int-64 | Required. |
AdCreative | Required. Provide a creative spec: { "creative": { "name": "NAME", "object_story_spec": SPEC, "product_set_id": PRODUCT_SET_ID } } |
enum | Optional. |
list<Object> | Optional. |
list<enum> | Optional.
If the call passes validation or review, the response will be |
You can update an ad by making a POST
request to the /{ad_id}
node.
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/v21.0
/AD_ID
Name | Description |
---|---|
string | New name of the ad. |
list<Object> | Ad labels associated with this ad. |
list<enum> | Optional.
If the call passes validation or review, the response will be |
enum | Values: During testing, it is recommended setting ads to a |
AdCreative | The creative spec of the ad creative to be used by this ad. Provide a creative spec: { "creative": { "name": "<NAME>", "object_story_spec": <SPEC>, "product_set_id": <PRODUCT_SET_ID> } } |