> ## Documentation Index
> Fetch the complete documentation index at: https://docs.adstellar.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a launch draft: a prepared campaign build (ad account + creative templates + audience templates + budget) that a human reviews and launches in the dashboard. Does NOT launch anything — no ads are published and no money is spent. Requires an active subscription.

> Create a launch draft: a prepared campaign build (ad account + creative templates + audience templates + budget) that a human reviews and launches in the dashboard. Does NOT launch anything — no ads are published and no money is spent. Requires an active subscription.



## OpenAPI

````yaml /openapi.json post /tools/create_launch_draft
openapi: 3.1.0
info:
  title: AdStellar API
  version: 1.0.0
  description: >-
    Public REST API for AdStellar — creative generation, video generation,
    campaign management, and analytics. Every endpoint maps 1:1 to an AdStellar
    MCP tool.
servers:
  - url: https://app.adstellar.ai/api/v1
security: []
paths:
  /tools/create_launch_draft:
    post:
      summary: >-
        Create a launch draft: a prepared campaign build (ad account + creative
        templates + audience templates + budget) that a human reviews and
        launches in the dashboard. Does NOT launch anything — no ads are
        published and no money is spent. Requires an active subscription.
      description: >-
        Create a launch draft: a prepared campaign build (ad account + creative
        templates + audience templates + budget) that a human reviews and
        launches in the dashboard. Does NOT launch anything — no ads are
        published and no money is spent. Requires an active subscription.
      operationId: create_launch_draft
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              properties:
                adAccountId:
                  description: Meta ad account id (from list_ad_accounts).
                  type: string
                campaignName:
                  description: Name for the draft campaign.
                  type: string
                  maxLength: 200
                creativeTemplateIds:
                  description: Creative template ids to include.
                  type: array
                  items:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                audienceTemplateIds:
                  description: Audience template ids to include.
                  type: array
                  items:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                fromTemplateId:
                  description: >-
                    Clone an existing draft/template by id (copies its full
                    config).
                  type: string
                  format: uuid
                  pattern: >-
                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                workspaceId:
                  description: >-
                    Workspace to create the draft in (must be one this
                    credential can access). Omit for the primary workspace.
                  type: string
                  format: uuid
                  pattern: >-
                    ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
              additionalProperties: false
      responses:
        '200':
          description: Tool result
        '401':
          description: Missing or invalid API key
        '403':
          description: Missing required scope
        '429':
          description: Rate limit exceeded
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AdStellar API key (ast_live_...)

````