> ## 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.

# Get Campaign Settings

> Return campaign settings for sender limits and pacing.

**CLI:**

```bash theme={null}
puffle campaign setting
```

## Overview

Returns the campaign settings surface for the caller, including connected campaign-capable accounts, their current limits, and recent usage. Use this for settings screens and agent checks before changing limits.

## AI agent notes

Call this before changing campaign sender limits. Each account includes current usage, current limits, recommended limits, and maximum limits.

Respect the returned maximums. Sender limits are account-level pacing controls, not per-campaign counters; changing them affects every campaign that can send through that account.


## OpenAPI

````yaml get /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:
    get:
      tags:
        - Campaigns
      summary: Get Campaign Settings
      description: >-
        Return the caller's connected sender accounts with weekly usage and
        per-account limits for the campaigns page settings surface.
      operationId: getCampaignSettings
      parameters: []
      responses:
        '200':
          description: Campaign sender settings for the caller.
          content:
            application/json:
              schema:
                type: object
                properties:
                  accounts:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        type:
                          type: string
                        provider_account_id:
                          type: string
                          nullable: true
                        is_premium:
                          type: boolean
                          nullable: true
                        weekly_connection_limit:
                          type: integer
                          exclusiveMinimum: true
                          maximum: 9007199254740991
                          nullable: true
                          minimum: 0
                        weekly_message_limit:
                          type: integer
                          exclusiveMinimum: true
                          maximum: 9007199254740991
                          nullable: true
                          minimum: 0
                        display_name:
                          type: string
                          nullable: true
                        email_address:
                          type: string
                          nullable: true
                        is_default_sender:
                          type: boolean
                        status:
                          type: string
                        daily_limit:
                          type: integer
                          exclusiveMinimum: true
                          maximum: 9007199254740991
                          nullable: true
                          minimum: 0
                        weekly_stats:
                          type: object
                          properties:
                            connections_sent:
                              type: integer
                              minimum: 0
                              maximum: 9007199254740991
                            messages_sent:
                              type: integer
                              minimum: 0
                              maximum: 9007199254740991
                          required:
                            - connections_sent
                            - messages_sent
                          additionalProperties: false
                        limits:
                          type: object
                          properties:
                            weekly_connection_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                            weekly_message_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                            max_connection_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                            max_message_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                            recommended_connection_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                            recommended_message_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                          required:
                            - weekly_connection_limit
                            - weekly_message_limit
                            - max_connection_limit
                            - max_message_limit
                            - recommended_connection_limit
                            - recommended_message_limit
                          additionalProperties: false
                        daily_stats:
                          type: object
                          properties:
                            sent:
                              type: integer
                              minimum: 0
                              maximum: 9007199254740991
                            daily_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              minimum: 0
                          required:
                            - sent
                            - daily_limit
                          additionalProperties: false
                      required:
                        - id
                        - type
                        - provider_account_id
                        - is_premium
                        - weekly_connection_limit
                        - weekly_message_limit
                        - display_name
                        - email_address
                        - status
                        - daily_limit
                        - weekly_stats
                        - limits
                      additionalProperties: false
                  schedules:
                    type: array
                    items: {}
                  weekly_stats:
                    type: array
                    items: {}
                required:
                  - accounts
                additionalProperties: false
        '401':
          description: Missing or invalid authentication.
          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_...

````