update_linkedin_creative

LinkedIn Ads Write

User wants to edit a LinkedIn ad/creative

Endpoint

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

Headers

Description

User wants to edit a LinkedIn ad/creative. Update ad copy, headline, CTA, or status. Updatable Fields: - status: ACTIVE or PAUSED - introductory_text: Main ad copy (max 600 chars) - headline: Ad headline (max 70 chars) - call_to_action: CTA button label - landing_page_url: Destination URL Note: LinkedIn may re-review the creative after content changes. Execution time: 2-3 seconds

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
creative_idstring requiredCreative ID to update
campaign_idstring requiredParent campaign ID
account_idstring optionalLinkedIn Ad Account ID. Required for multi-account users. Get from list_connected_accounts.
namestring optionalNew creative name (shown in Campaign Manager UI). Per LinkedIn API 2026-03, name is updatable via PARTIAL_UPDATE.
statusstring optionalNew status: ACTIVE or PAUSED
introductory_textstring optionalNew ad copy (max 600 characters). Note: LinkedIn may NOT allow updating inline content on non-DRAFT creatives.
headlinestring optionalNew headline (max 70 characters). Note: LinkedIn may NOT allow updating inline content on non-DRAFT creatives.
call_to_actionstring optionalNew CTA label
landing_page_urlstring optionalNew destination URL

Example request

{
  "arguments": {
    "creative_id": "string",
    "campaign_id": "<campaign_id>",
    "account_id": "string",
    "name": "string",
    "status": "string",
    "introductory_text": "string",
    "headline": "string",
    "call_to_action": "string"
  }
}

Example responses

200 — Success

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

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_linkedin_creative"
}

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_linkedin_creative",
  "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