v1.7 Release notes
Release Date | Date no longer supported |
---|---|
2024-04-01 | 2025-04-01 |
What's new in v1.7
Breaking changes have been made to the Create a new asset upload session API
The following set of changes have been made to the AssetUploadSession API.
New limit to file size
To optimize the asset upload process, we are imposing the following limits to the types of assets you can specify as the value for the asset_kind
property.
Asset type | Maximum file size |
---|---|
CREATIVE, ASSET_DYNAMIC_CREATIVE | 200MB |
CSV | 4GB |
FB_PLAYABLE_AD | 5MB |
Removal of the file_name
property
file_name
propertyThe file_name
property has been removed for simplicity.
Session URL for asset upload is included in the API response
The value of the content_upload_url
property included in the response returned from calling the AssetUploadSession API, which used to be the signed URL for GCS, has been changed to the session URL. This means that you will no longer need to share the signed URL with GCS to get the session URL, as the session URL is included in the API response. To learn how to upload creative assets, see the campaign creation guide.
The app_event_types
object has been added to the app
object
app_event_types
object has been added to the app
objectIn order to optimize the training of our machine learning models with better structured data, we have added the app_event_types
object to the app
object. The app_event_types
object pairs the events you have specified to send postback data for on your MMP dashboard with a set of predefined event types. Acceptable event types are the following.
IN_APP_ADVERTISING
: In-app advertising (IAA)IN_APP_PURCHASE
: In-app purchase (IAP)SIGN_UP
: Sign-up / registrationSUBSCRIPTION
: SubscriptionPREDICTED_LIFETIME_VALUE
: Predicted lifetime value (pLTV)ACHIEVE_LEVEL
: Achieve target level in gameSTART_TRIAL
: Start trialADD_PAYMENT_INFO
: Add payment infoVIEW_PRODUCT_OR_CONTENT
: View product/contentADD_TO_WISHLIST
: Add to wishlistSEARCH
: SearchADD_TO_CART
: Add to cartBEGIN_CHECKOUT
: Begin checkoutFIRST_DEPOSIT
: First depositFIRST_TRADE
: First transactionOTHER
: Other
{
...
app: {
app_event_types: {
"af_purchase": "IN_APP_PURCHASE"
}
}
}
You can use this object in the following APIs. For more details, see Create a new product
object.
The Upload a new file API has been deprecated
The UploadFile API has been deprecated and replaced with the AssetUpload API. To upload creative assets, you must use the AssetUpload API going forward. Detailed steps for using the AssetUpload API are outlined in this guide.