Standard enhancements is for ads using a single image, video, or carousel. It automatically creates multiple variations of your ad and shows a personalized variation to each Account Center account based on what they're most likely to respond to. You can create ads with standard enhancements using the TRAFFIC
or CONVERSIONS
objectives to help drive performance and deliver more tailored ads to each Account Center account. For more information, please see About Advantage+ creative.
Advantage+ creative creation is supported in all versions of the Marketing API, but beginning with v17.0, all ad creation requests that are eligible for standard enhancements must specify if the ad opts in to use it or not. With the v17.0 update, this includes campaigns using traffic, engagement, leads, sales, app promotion objectives and single image or video, or carousel ad formats. The enroll_status
field must be provided with either an OPT_IN
or OPT_OUT
value.
curl -X POST \
-F 'name="My creative title"' \
-F 'object_story_spec={
"page_id": "<PAGE_ID>",
"instagram_actor_id": "<INSTAGRAM_ACTOR_ID>",
"link_data": {
"link": "www.google.com",
}
}' \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v21.0
/act_<AD_ACCOUNT_ID>/adcreatives
curl -X POST \
-F 'name="My creative title"' \
-F 'object_story_spec={
"page_id": "<PAGE_ID>",
"instagram_actor_id": "<INSTAGRAM_ACTOR_ID>",
"link_data": {
"link": "www.google.com",
}
}' \
-F 'degrees_of_freedom_spec={
"creative_features_spec": {
"standard_enhancements": {
"enroll_status": "OPT_IN"
}
}
}' \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v21.0
/act_<AD_ACCOUNT_ID>/adcreatives
curl -X POST \
-F 'creative={
"object_story_spec": {
"page_id": "<PAGE_ID>",
"link_data": {
"link": "<WEBSITE_URL>",
}
},
}' \
-F "adset_id=<ADSET_ID>" \
-F "name=New Ad" \
-F "status=PAUSED" \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v21.0
/act_<AD_ACCOUNT_ID>/ads
curl -X POST \
-F 'creative={
"object_story_spec": {
"page_id": "<PAGE_ID>",
"link_data": {
"link": "<WEBSITE_URL>",
}
},
"degrees_of_freedom_spec": {
"creative_features_spec": {
"standard_enhancements": {
"enroll_status": "OPT_IN"
}
}
}
}' \
-F "adset_id=<ADSET_ID>" \
-F "name=New Ad" \
-F "status=PAUSED" \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v21.0
/act_<AD_ACCOUNT_ID>/ads
For more details, see Ad Creative.
Name | Description |
---|---|
| Specifies the types of transformations that are enabled for the given creative. For more information, see Ad Creative Degrees Of Freedom Spec, Reference. |
The following features can be opted in the creative_features_spec
:
Name | Description |
---|---|
| Basic set of enhancements to optimize your ad creative and improve performance. This can include:
The |