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

> Get one campaign-backed Outbound execution

**CLI:**

```bash theme={null}
puffle campaign --id <id>
```

## Overview

Returns one campaign-backed Outbound execution owned by the caller, including lifecycle status, configured sequence, flattened sender accounts, stats, and contact aggregates for the detail view.

Use this after [List Outbound](/api-reference/campaigns/list-campaigns) when you need the full row shape instead of the compact index row.

## AI agent notes

Check `status` before deciding what actions are allowed. Draft Outbound rows can be edited; active and paused rows have narrower update behavior; completed rows are effectively historical.

For contact rows, generated messages, sender attribution, or settings, prefer the specific child endpoints when you need a fresh focused view.


## OpenAPI

````yaml get /api/campaigns/{id}
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/{id}:
    get:
      tags:
        - Campaigns
      summary: Get Outbound
      description: >-
        Return the Outbound execution with its sequence, flattened sender
        accounts, and contact aggregates for the Outbound page detail view.
      operationId: getCampaign
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            description: Campaign UUID
      responses:
        '200':
          description: Outbound detail with sequence and contact aggregates.
          content:
            application/json:
              schema:
                type: object
                properties:
                  campaignUrl:
                    type: string
                  campaign:
                    type: object
                    properties:
                      id:
                        type: string
                        description: String value with endpoint-specific validation.
                      user_id:
                        type: string
                        description: String value with endpoint-specific validation.
                      type:
                        type: string
                        enum:
                          - linkedin
                          - email
                          - multi_channel
                        description: >-
                          Channel mode for this campaign. Immutable after
                          creation.
                      name:
                        type: string
                      status:
                        type: string
                        enum:
                          - draft
                          - launching
                          - active
                          - paused
                          - completed
                        description: >-
                          Lifecycle state. `draft` is editable; `launching` is
                          transitional; `active` is sending; `paused` halts
                          sends until resumed; `completed` is terminal.
                      daily_limit:
                        type: integer
                        exclusiveMinimum: true
                        maximum: 9007199254740991
                        nullable: true
                        minimum: 0
                      stop_on_reply:
                        type: boolean
                        nullable: true
                      open_tracking:
                        type: boolean
                        nullable: true
                      signature:
                        type: string
                        nullable: true
                      skip_other_campaigns:
                        type: boolean
                        nullable: true
                      operating_hours:
                        type: object
                        additionalProperties: {}
                        nullable: true
                      stats:
                        type: object
                        properties:
                          total:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          sent:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          replied:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          bounced:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          completed:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          timed_out:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          connection_sent:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          connected:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                          message_sent:
                            type: integer
                            minimum: 0
                            maximum: 9007199254740991
                        additionalProperties: false
                        description: >-
                          Counters updated atomically as leads progress. `total`
                          is set at launch; the rest increment.
                        nullable: true
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                      sender_accounts:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: String value with endpoint-specific validation.
                            type:
                              type: string
                              enum:
                                - linkedin
                                - email
                                - multi_channel
                              description: >-
                                Channel mode for this campaign. Immutable after
                                creation.
                            email_address:
                              type: string
                              nullable: true
                            provider_account_id:
                              type: string
                              nullable: true
                            display_name:
                              type: string
                              nullable: true
                            first_name:
                              type: string
                              nullable: true
                            last_name:
                              type: string
                              nullable: true
                            status:
                              type: string
                            daily_limit:
                              type: integer
                              exclusiveMinimum: true
                              maximum: 9007199254740991
                              nullable: true
                              minimum: 0
                            is_default_sender:
                              type: boolean
                            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
                            is_premium:
                              type: boolean
                              nullable: true
                          required:
                            - id
                            - type
                            - email_address
                            - provider_account_id
                            - display_name
                            - status
                          additionalProperties: false
                    required:
                      - id
                      - user_id
                      - type
                      - name
                      - status
                      - daily_limit
                      - stop_on_reply
                      - open_tracking
                      - signature
                      - skip_other_campaigns
                      - operating_hours
                      - stats
                      - created_at
                      - updated_at
                      - sender_accounts
                    additionalProperties: false
                    description: Canonical campaign entity.
                  sequence_nodes:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: String value with endpoint-specific validation.
                        campaign_id:
                          type: string
                          description: String value with endpoint-specific validation.
                        position:
                          type: integer
                          minimum: 0
                          maximum: 9007199254740991
                        type:
                          type: string
                          enum:
                            - connection_request
                            - message
                            - email
                            - delay
                            - ai
                            - end
                        subject:
                          type: string
                          nullable: true
                        body:
                          type: string
                          nullable: true
                        signature:
                          type: string
                          nullable: true
                        include_message:
                          type: boolean
                          nullable: true
                        is_reply:
                          type: boolean
                          nullable: true
                        delay_days:
                          type: integer
                          minimum: 0
                          maximum: 9007199254740991
                          nullable: true
                        delay_hours:
                          type: integer
                          minimum: 0
                          maximum: 9007199254740991
                          nullable: true
                        delay_minutes:
                          type: integer
                          minimum: 0
                          maximum: 9007199254740991
                          nullable: true
                        ai_node:
                          type: object
                          properties:
                            output_type:
                              type: string
                              enum:
                                - email
                                - message
                          required:
                            - output_type
                          additionalProperties: {}
                          nullable: true
                      required:
                        - id
                        - campaign_id
                        - position
                        - type
                      additionalProperties: false
                      description: >-
                        One node in the campaign sequence. `position` is
                        0-indexed.
                  prospects_by_status:
                    type: object
                    additionalProperties:
                      type: integer
                      minimum: 0
                      maximum: 9007199254740991
                  prospects_by_node:
                    type: object
                    additionalProperties:
                      type: object
                      additionalProperties:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                  campaign_total_sent:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                    description: >-
                      Cumulative direct messages or emails for this campaign.
                      LinkedIn connection-request notes are counted as
                      connections, not messages.
                  campaign_total_connections_sent:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                    description: >-
                      Cumulative LinkedIn connection requests sent by this
                      campaign.
                  campaign_total_connections_accepted:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                    description: >-
                      Cumulative LinkedIn connection requests accepted in this
                      campaign.
                required:
                  - campaignUrl
                  - campaign
                  - sequence_nodes
                  - prospects_by_status
                  - prospects_by_node
                  - campaign_total_sent
                  - campaign_total_connections_sent
                  - campaign_total_connections_accepted
                additionalProperties: false
        '401':
          description: Missing or invalid authentication.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '404':
          description: Outbound doesn't exist or isn't owned by 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_...

````