clone_linkedin_campaign

LinkedIn Ads Write

User wants to duplicate, copy, or clone a LinkedIn campaign

Endpoint

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

Headers

Description

User wants to duplicate, copy, or clone a LinkedIn campaign. Clone an existing campaign with optional overrides for name, budget, locations, and creatives. Parameters: - source_campaign_id: Campaign ID to clone (required) - new_name: Name for the cloned campaign (default: '{original} - Copy') - daily_budget: Override daily budget for the clone - locations: Override location targeting for the clone - status: Status for new campaign (default: PAUSED for safety) - copy_creatives: Copy creatives from source (default: True) - account_id: Optional LinkedIn Ad Account ID The cloned campaign is always created as PAUSED for safety. Activate it when ready. Example Prompts: - "Clone my LinkedIn campaign" - "Duplicate campaign 12345 with a new name" - "Copy my campaign but change the budget to $30/day" - "Create a copy of my campaign for a different region" - "Replicate campaign with different targeting" Execution time: 5-10 seconds

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
source_campaign_idstring requiredCampaign ID to clone
new_namestring optionalName for cloned campaign (default: '{original} - Copy')
daily_budgetnumber optionalNew daily budget for clone
locationsarray optionalOverride locations for cloned campaign
statusstring optionalStatus for new campaign (default PAUSED for safety) default: "PAUSED"
copy_creativesboolean optionalCopy creatives from source campaign default: true
account_idstring optionalLinkedIn Ad Account ID. Required for multi-account users. Get from list_connected_accounts.

Example request

{
  "arguments": {
    "source_campaign_id": "<campaign_id>",
    "new_name": "string",
    "daily_budget": 10.0,
    "locations": [
      "string"
    ],
    "status": "PAUSED",
    "copy_creatives": true,
    "account_id": "string"
  }
}

Example responses

200 — Success

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

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": "clone_linkedin_campaign"
}

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": "clone_linkedin_campaign",
  "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