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

# List outbound sender mapping

> List outbound sender mapping

**CLI:**

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

## Overview

List outbound sender mapping

This page documents `get /api/campaigns/mapping`. Use the request and response sections on this page for accepted parameters, payload fields, response fields, and authentication behavior.

## AI agent notes

* Confirm the operation matches the user's intent before calling it.
* For write operations, confirm the user intends to change state.
* Surface validation, permission, and not-found errors instead of retrying unchanged.


## OpenAPI

````yaml get /api/campaigns/mapping
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - strategy planning, 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: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Social post scheduling and inbox — schedule, publish, archive, and delete
      posts across LinkedIn, Twitter, Threads, Bluesky via the Late (late.ai)
      integration. Connect social accounts via OAuth, pull analytics, monitor
      mentions.
paths:
  /api/campaigns/mapping:
    get:
      tags:
        - Campaigns
      summary: List outbound sender mapping
      description: >-
        Return active outbound campaigns with assigned email and LinkedIn
        senders and each sender/campaign pair's next three scheduled prospect
        send slots.
      operationId: listOutboundSenderMapping
      parameters:
        - name: campaign_id
          in: query
          required: false
          schema:
            type: string
        - name: sender
          in: query
          required: false
          schema:
            type: string
        - name: sender_type
          in: query
          required: false
          schema:
            type: string
            enum:
              - email
              - linkedin
      responses:
        '200':
          description: Outbound sender mapping rows and filter options.
          content:
            application/json:
              schema:
                type: object
                properties:
                  mappings:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        campaignId:
                          type: string
                        campaignName:
                          type: string
                        campaignStatus:
                          type: string
                        campaignType:
                          type: string
                        senderId:
                          type: string
                        senderType:
                          type: string
                          enum:
                            - email
                            - linkedin
                        senderName:
                          type: string
                        senderEmail:
                          type: string
                          nullable: true
                        senderConnectionCount:
                          type: integer
                          minimum: 0
                          maximum: 9007199254740991
                          nullable: true
                        senderConnectionCountRefreshedAt:
                          type: string
                          nullable: true
                        senderProfileUrl:
                          type: string
                          nullable: true
                        senderStatus:
                          type: string
                          nullable: true
                        slots:
                          type: array
                          items:
                            type: object
                            properties:
                              prospectId:
                                type: string
                              scheduledAt:
                                type: string
                              status:
                                type: string
                            required:
                              - prospectId
                              - scheduledAt
                              - status
                            additionalProperties: false
                      required:
                        - id
                        - campaignId
                        - campaignName
                        - campaignStatus
                        - campaignType
                        - senderId
                        - senderType
                        - senderName
                        - senderEmail
                        - senderConnectionCount
                        - senderConnectionCountRefreshedAt
                        - senderProfileUrl
                        - senderStatus
                        - slots
                      additionalProperties: false
                  filters:
                    type: object
                    properties:
                      campaigns:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                          required:
                            - id
                            - name
                          additionalProperties: false
                      senders:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                            type:
                              type: string
                              enum:
                                - email
                                - linkedin
                          required:
                            - id
                            - name
                            - type
                          additionalProperties: false
                    required:
                      - campaigns
                      - senders
                    additionalProperties: false
                required:
                  - mappings
                  - filters
                additionalProperties: false
        '400':
          description: Invalid filter query.
          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
        '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_...

````