update_meta_catalog_ad

Meta Ads Write

User wants to edit/change an existing catalog AD — rename, pause/activate, swap to another creative, or change the copy/headline/description/CTA/landing/product-set (Meta rebuilds the creative since c

Endpoint

POST https://api.adspirer.ai/api/v1/tools/update_meta_catalog_ad/execute

Headers

Description

User wants to edit/change an existing catalog AD — rename, pause/activate, swap to another creative, or change the copy/headline/description/CTA/landing/product-set (Meta rebuilds the creative since creatives are immutable). Only the fields you pass change.

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
ad_idstring requiredThe catalog ad ID to update (required).
namestring optionalNew ad name.
statusstring optionalACTIVE, PAUSED, or ARCHIVED.
creative_idstring optionalSwap to an existing creative ID (no rebuild).
primary_textstring optionalNew primary text (rebuilds the creative).
headlinestring optionalNew headline (rebuilds the creative).
descriptionstring optionalNew description (rebuilds the creative).
call_to_actionstring optionalNew CTA button type (rebuilds the creative).
landing_page_urlstring optionalNew storefront URL (rebuilds the creative).
product_set_idstring optionalProduct set for the rebuilt creative (required when rebuilding).
product_catalog_idstring optionalCatalog ID (used to derive a storefront link when rebuilding without landing_page_url).
url_tagsstring optionalUTM-style URL parameters (rebuilds the creative).
facebook_page_idstring optionalFacebook Page ID (auto-detected if rebuilding).
ad_account_idstring optionalMeta ad account ID. Auto-detected if omitted.

Example request

{
  "arguments": {
    "ad_id": "string",
    "name": "string",
    "status": "string",
    "creative_id": "string",
    "primary_text": "string",
    "headline": "string",
    "description": "string"
  }
}

Example responses

200 — Success

{
  "success": true,
  "data": {
    "text": "(tool-specific textual output for update_meta_catalog_ad)",
    "quota": {
      "used": 42,
      "limit": 150,
      "tier": "plus",
      "period_end": "2026-05-01"
    }
  },
  "tool": "update_meta_catalog_ad"
}

400 — Tool-level error (bad arguments / multi-account selection)

{
  "success": false,
  "error": "You have 25 meta_ads accounts connected. Please specify which account to use by passing the ad_account_id parameter:\n  - Acme Holdings (ad_account_id=\"act_123456789\")\n  - Acme EU (ad_account_id=\"act_987654321\")",
  "is_error": true,
  "tool": "update_meta_catalog_ad"
}

402 — Quota exhausted

{
  "success": false,
  "error": "\ud83d\udea8 Monthly limit reached (150/150 tool calls on Plus tier).\nUpgrade to Pro at https://adspirer.ai to keep building.",
  "is_error": true,
  "tool": "update_meta_catalog_ad",
  "quota": {
    "used": 150,
    "limit": 150,
    "tier": "plus",
    "period_end": "2026-05-01",
    "upgrade_url": "https://adspirer.ai"
  }
}

Try it live


Adspirer REST API — get an API key at adspirer.ai/keys · adspirer.ai