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

# Complete onboarding and schedule launch strategies

> Complete onboarding and create launch strategies

**CLI:**

```bash theme={null}
puffle onboarding complete-with-plan create
```

## Overview

Complete onboarding and create launch strategies

This page documents `post /api/onboarding/complete-with-plan`. 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/onboarding/complete-with-plan
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/onboarding/complete-with-plan:
    post:
      tags:
        - Accounts
      summary: Complete onboarding and schedule launch strategies
      description: >-
        Validates confirmed onboarding context, durably schedules research-aware
        Strategy planning, and completes onboarding without waiting for
        background work.
      operationId: completeOnboardingWithPlan
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties: {}
              additionalProperties: false
      responses:
        '200':
          description: Onboarding completed and Strategy planning scheduled.
          content:
            application/json:
              schema:
                type: object
                properties:
                  onboardingCompleted:
                    type: boolean
                  destination:
                    type: string
                  plan:
                    type: object
                    properties:
                      strategies:
                        maxItems: 0
                        type: array
                        items:
                          type: object
                          properties: {}
                          additionalProperties: false
                    required:
                      - strategies
                    additionalProperties: false
                  strategies:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                      required:
                        - id
                      additionalProperties: false
                  strategyCount:
                    type: number
                  strategyRunsQueued:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                  strategyRunQueueFailures:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                  strategyQueuePartial:
                    type: boolean
                  strategyPlanningStatus:
                    type: string
                    enum:
                      - not_requested
                      - pending_research
                      - queued
                      - running
                      - completed
                      - failed
                  strategyPlanningPending:
                    type: boolean
                  warmedInboxesAllocated:
                    type: number
                  warmedInboxAllocationPending:
                    type: boolean
                required:
                  - onboardingCompleted
                  - destination
                  - plan
                  - strategies
                  - strategyCount
                  - strategyPlanningStatus
                  - strategyPlanningPending
                additionalProperties: false
        '400':
          description: Invalid request.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '402':
          description: Active plan required.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '404':
          description: Missing onboarding context.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '409':
          description: Onboarding context is not confirmed or ready.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '503':
          description: Plan verification temporarily unavailable.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````