> ## Documentation Index
> Fetch the complete documentation index at: https://docs.puffle.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Campaign Settings

> Update campaign settings for sender limits and pacing.

**CLI:**

```bash theme={null}
puffle campaign setting update
puffle campaign setting update --account-id <account-id> --weekly-connection-limit <weekly-connection-limit> --weekly-message-limit <weekly-message-limit> --daily-limit <daily-limit>
```

## Overview

Updates the campaign settings surface for one connected account. Use it for weekly LinkedIn limits and daily email limits that affect campaign pacing.

## AI agent notes

Call [Get campaign settings](/api-reference/campaigns/get-campaign-settings) first so you have the sender account ID, current usage, recommended limits, and maximum limits.

These settings are sender-level pacing controls. Updating an account's weekly or daily limit can affect multiple campaigns that share that sender.


## OpenAPI

````yaml put /api/campaigns/settings
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - Feed and Lead Finder search
    preparation, campaign-backed Outbound execution, Puffle Agent runs, sender
    management, and Unibox reply workflows. Designed for operation by both
    humans and autonomous AI agents. Agents should start at the [Agent
    Playbook](/guides/agent-playbook) which prescribes a workspace-context check
    (`GET /api/context`) and core user journeys with exact call ordering.
  contact:
    name: Puffle Support
    url: https://puffle.ai
servers:
  - url: https://app.puffle.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Campaign-backed Outbound execution. These endpoints manage draft,
      launching, active, paused, and completed Outbound runs with sequence
      nodes, contacts, and sender accounts.
  - name: Accounts
    description: Signed-in user account, settings, and workspace context endpoints.
  - name: Billing
    description: Billing customer portal and account billing endpoints.
  - name: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Read connected LinkedIn and X accounts, review current and archived posts,
      and reconcile publication status. Creating, editing, scheduling,
      publishing, OAuth connection, analytics, and mentions remain
      dashboard-managed workflows and are not part of the public Bearer-token
      API.
paths:
  /api/campaigns/settings:
    put:
      tags:
        - Campaigns
      summary: Update Campaign Settings
      description: >-
        Update per-account weekly or daily sender limits used by the campaigns
        page settings surface.
      operationId: updateCampaignSettings
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                account_id:
                  type: string
                weekly_connection_limit: {}
                weekly_message_limit: {}
                daily_limit: {}
              additionalProperties: {}
      responses:
        '200':
          description: Sender account limits updated.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                required:
                  - success
                additionalProperties: false
        '400':
          description: Validation failure for sender limit fields.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '401':
          description: Missing or invalid authentication.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '404':
          description: Sender account not found for the caller.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '500':
          description: Unexpected server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````