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

# Prepare one durable, reviewable Outbound draft from a Feed. It never launches or sends.

> Prepare one durable, reviewable Outbound draft from a Feed. It never launches or sends.

## Overview

Prepare one durable, reviewable Outbound draft from a Feed. It never launches or sends.

This page documents `post /api/feed/{id}/outbound-draft`. 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 post /api/feed/{id}/outbound-draft
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/feed/{id}/outbound-draft:
    post:
      tags:
        - Feed
        - Outbound
      summary: >-
        Prepare one durable, reviewable Outbound draft from a Feed. It never
        launches or sends.
      description: >-
        Prepare one durable, reviewable Outbound draft from a Feed. It never
        launches or sends.
      operationId: feed.prepareOutboundDraft
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Reviewable Outbound draft.
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - ready_for_review
                      campaignId:
                        type: string
                        format: uuid
                      campaignUrl:
                        type: string
                        format: uri
                      reviewUrl:
                        type: string
                        format: uri
                      feedUrl:
                        type: string
                        format: uri
                      imported:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      duplicates:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      skipped:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      created:
                        type: boolean
                      messageCount:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      aiOperatorMessageCount:
                        type: integer
                        minimum: 0
                        maximum: 9007199254740991
                      campaigns:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            type:
                              type: string
                              enum:
                                - email
                                - linkedin
                                - multi_channel
                            url:
                              type: string
                              format: uri
                            imported:
                              type: integer
                              minimum: 0
                              maximum: 9007199254740991
                          required:
                            - id
                            - type
                            - url
                            - imported
                          additionalProperties: false
                    required:
                      - status
                      - campaignId
                      - campaignUrl
                      - reviewUrl
                      - feedUrl
                      - imported
                      - duplicates
                      - skipped
                      - created
                      - messageCount
                      - aiOperatorMessageCount
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - blocked
                          - failed
                      code:
                        type: string
                      error:
                        type: string
                      feedUrl:
                        type: string
                        format: uri
                    required:
                      - status
                      - code
                      - error
                      - feedUrl
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - preparing
                      preparationId:
                        type: string
                        format: uuid
                      feedUrl:
                        type: string
                        format: uri
                    required:
                      - status
                      - preparationId
                      - feedUrl
                    additionalProperties: false
        '400':
          description: Blocked.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````