help_user_upload

Google Ads Read

Show user instructions for uploading images to postimages

Endpoint

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

Headers

Description

Show user instructions for uploading images to postimages.org for Performance Max campaigns. ⚠️ CALL THIS FIRST when user wants to create a PMax campaign! **YOUR ROLE**: Image Upload Guide **WHEN TO USE**: - User says "create PMax campaign" or similar - Before asking for image uploads - Anytime user needs help uploading images **WHAT THIS DOES**: - Returns clear, step-by-step instructions - Tells user to upload to postimages.org - Explains how to get Direct links (not share pages) - Shows example URL format **DO NOT**: - Ask user to upload via ChatGPT's paperclip (won't work with size limits!) - Request base64 data (too large!) - Skip this step (user needs clear guidance) **AFTER THIS**: - User uploads to postimages.org - User pastes Direct links in chat - You call validate_and_prepare_assets with those URLs **Execution Time**: <1 second (just returns text) **Authentication**: Not required

Request body

All tool arguments are wrapped in an arguments object.

FieldTypeDescription
No arguments required.

Example request

{
  "arguments": {}
}

Example responses

200 — Success

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

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

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