add_linkedin_video_creative

LinkedIn Ads Write

**USE THIS TOOL WHEN:** User wants to add another video ad to an EXISTING LinkedIn video campaign

Endpoint

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

Headers

Description

**USE THIS TOOL WHEN:** User wants to add another video ad to an EXISTING LinkedIn video campaign. **DO NOT USE to create a new campaign.** For new campaigns → `create_linkedin_video_campaign`. **DO NOT USE for image campaigns** → use `add_linkedin_creative` instead. **DO NOT USE for text ads** → use `add_linkedin_text_creative` instead. **DO NOT USE for different audiences** → use `add_linkedin_campaign_to_group` instead. **KEY DISTINCTION:** - Same audience, different video/copy → use THIS tool - Different audience/targeting → use `add_linkedin_campaign_to_group` LinkedIn recommends 3-4 video ad variations per campaign. Required Parameters: - campaign_id: Video campaign to add creative to - organization_id: Organization for ad authoring - video_urn: Video asset URN (urn:li:video:...) - introductory_text: Main ad copy (max 600 chars) - landing_page_url: Destination URL (HTTPS) AD POLICY: NEVER use "LinkedIn" in ad copy. Execution time: 5-10 seconds

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
campaign_idstring requiredCampaign ID to add the video creative to
organization_idstring requiredOrganization ID for ad authoring
account_idstring optionalLinkedIn Ad Account ID (optional, auto-resolved if omitted)
video_urnstring requiredVideo asset URN (urn:li:video:...) from discover_linkedin_assets or video upload
introductory_textstring requiredMain ad text/copy (up to 600 characters)
landing_page_urlstring requiredDestination URL (must start with https://)
headlinestring optionalAd headline (up to 70 characters)
call_to_actionstring optionalCall-to-action button label default: "LEARN_MORE"
creative_namestring optionalName for this creative (shown in Campaign Manager UI). E.g. 'Product Demo - Ad 2'

Example request

{
  "arguments": {
    "campaign_id": "<campaign_id>",
    "organization_id": "string",
    "video_urn": "string",
    "introductory_text": "string",
    "landing_page_url": "https://example.com",
    "account_id": "string",
    "headline": "string",
    "call_to_action": "LEARN_MORE",
    "creative_name": "string"
  }
}

Example responses

200 — Success

{
  "success": true,
  "data": {
    "text": "(tool-specific textual output for add_linkedin_video_creative)",
    "quota": {
      "used": 42,
      "limit": 150,
      "tier": "plus",
      "period_end": "2026-05-01"
    }
  },
  "tool": "add_linkedin_video_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": "add_linkedin_video_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": "add_linkedin_video_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