Skip to content
Ads APIReferences / Assets / Get Image Assets

Get Image Assets

Returns image assets for a specific ad account.

Request

  • ad_account_id
    string [uuid]
    Required
  • page_size
    integer
  • offset
    integer

Response

Get image assets

    • id
      string [uuid]
    • name
      string
    • width
      integer [int32]
    • height
      integer [int32]
    • status
      string [asset-status]

      The current status of an asset throughout lifecycle processes like upload, transcode, and approval.

      Allowed values: "READY", "PROCESSING", "WAITING_UPLOAD", "PENDING_APPROVAL", "REJECTED", "ERROR"Example: "READY"
    • url
      string [uri]

Response sample

{  "image-assets": [    {      "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",      "name": "name",      "width": 0,      "height": 6,      "status": "READY",      "url": "http://example.com/aeiou"    },    {      "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",      "name": "name",      "width": 0,      "height": 6,      "status": "READY",      "url": "http://example.com/aeiou"    }  ]}