Ad, Image
Upload and manage images to later use in ad creative. Image formats, sizes and design guidelines depend up on your type of ad, see Ads Guide. See Image Crop and Ads Guide.
For example, provide an image file such as .bmp
, .jpeg
, or .gif
:
Once you have the image hash, you can use in in an ad creative:
Image for use in ad creatives can be uploaded and managed independently of the ad itself. The image used in an ad creative can be specified in the following ways:
Get available images for an ad account. Images used in every creative for the account should appear in the list.
To get specific images, specify hashes of the images in a hashes
:
Field | Description |
---|---|
id token with structure: ID | The ID of the image. |
account_id numeric string | The ad account that owns the image. |
created_time datetime | Time the image was created. |
creatives list<numeric string> | A list of ad creative IDs that this ad image is being used in. Not applicable for creatives using |
hash string | The hash which uniquely identifies the image. |
height unsigned int32 | The height of the image. |
is_associated_creatives_in_adgroups bool | SELF_EXPLANATORY |
name string | The filename of the image. The maximum length of this string is 100 characters. |
original_height unsigned int32 | The height of the image that was originally uploaded. |
original_width unsigned int32 | The width of the image that was originally uploaded. |
permalink_url string | A permanent URL of the image to use in story creatives. |
status enum {ACTIVE, INTERNAL, DELETED} | Status of the image. |
updated_time datetime | Time the image was updated. |
url string | A temporary URL which the image can be retrieved at. Do not use this URL in ad creative creation. |
url_128 string | A temporary URL pointing to a version of the image resized to fit within a 128x128 pixel box |
width unsigned int32 | The width of the image. |
Error | Description |
---|---|
100 | Invalid parameter |
Upload an image or zip file, get back a hash, and use the hash in an ad or creative. You must include a filename extension such as sample.jpg
, not sample
or sample.tmp
.
curl \ -F 'bytes=iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAOVBMVEX///87WZg7WZg7WZg7WZg7WZg7WZg7WZg7WZg7WZg7WZhMeMJEaa5Xi9tKdb0+Xp5Wi9tXjNxThNH+wk/7AAAACnRSTlMAsHIoaM7g/fx9Zr/g5QAAAGlJREFUeNplkFsOwCAIBPGJrtbX/Q/bqm1qwnxuJrBAE6OVD15pQy/WYePsDiIjp9FGyuC4DK7l6pOrVH4s41D6R4EzpJGXsa0MTQqp/yQo8hhHMuApoB1JQ5COnCN3yT6ys7xL3i7/cwMYsAveYa+MxAAAAABJRU5ErkJggg==' -F 'access_token=<ACCESS_TOKEN>' \ "https://graph.facebook.com/<API_VERSION>/act_<ACCOUNT_ID>/adimages"
You can upload an image instead of using an image hash when you create an ad or ad creative. Add the image file to the multi-part MIME POST and specify the file name. For example:
curl \ -F 'campaign_id=<AD_SET_ID>' \ -F 'creative={"title":"test title","body":"test","object_url":"http:\/\/www.test.com","image_file":"test.jpg"}' \ -F 'test.jpg=@test.jpg' -F 'name=My ad' \ -F 'access_token=<ACCESS_TOKEN>' \ "https://graph.facebook.com/<API_VERSION>/act_<ACCOUNT_ID>/ads"
The response contains:
Name | Description |
---|---|
id | ID of the ad |
To copy an ad image from one account to another, make a POST
request to /act_{DESTINATION_ACCOUNT_ID}/adimages
. Provide the source account ID without the act_
prefix and a hash of the image in copy_from
. This copies the image from the source to the destination account. Your app's user must have access to read the creatives from the source account or you cannot copy images from the account.
curl \ -F 'copy_from={"source_account_id":"<SOURCE_ACCOUNT_ID>", "hash":"02bee5277ec507b6fd0f9b9ff2f22d9c"}' -F 'access_token=<ACCESS_TOKEN>' "https://graph.facebook.com/<API_VERSION>/act_<DESTINATION_ACCOUNT_ID>/adimages"
adimages
edge from the following paths: Parameter | Description |
---|---|
bytes Base64 UTF-8 string | Image file. Example: |
copy_from JSON or object-like arrays | This copies the Ad Image from the source to the destination account. |
images
in the return type.hash
: string, url
: string, url_128
: string, url_256
: string, url_256_height
: string, url_256_width
: string, height
: int32, width
: int32, name
: string, Error | Description |
---|---|
100 | Invalid parameter |
200 | Permissions error |
613 | Calls to this api have exceeded the rate limit. |
368 | The action attempted has been deemed abusive or is otherwise disallowed |
190 | Invalid OAuth 2.0 Access Token |
80004 | There have been too many calls to this ad-account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting#ads-management. |
415 | Two factor authentication required. User have to enter a code from SMS or TOTP code generator to pass 2fac. This could happen when accessing a 2fac-protected asset like a page that is owned by a 2fac-protected business manager. |
You can only delete ad images not currently being used in an ad creative.
/act_{ad_account_id}/adimages
.Parameter | Description |
---|---|
hash string | Hash of the image you wish to delete. Required |
success
: bool, Error | Description |
---|---|
100 | Invalid parameter |
80004 | There have been too many calls to this ad-account. Wait a bit and try again. For more info, please refer to https://developers.facebook.com/docs/graph-api/overview/rate-limiting#ads-management. |