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

# Create SMS Campaign



## OpenAPI

````yaml POST /sms-campaigns
openapi: 3.0.0
info:
  title: Closer Intellect AI API
  description: >-
    The core API documentation and interactive playground for Closer Intellect
    AI.
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /sms-campaigns:
    post:
      tags:
        - SMS Campaigns
      summary: Create and launch a new SMS outreach campaign
      operationId: SmsCampaignsController_createCampaign
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSmsCampaignDto'
      responses:
        '201':
          description: Campaign successfully created
      security:
        - bearer: []
components:
  schemas:
    CreateSmsCampaignDto:
      type: object
      properties:
        name:
          type: string
          example: Winter Promo
        template:
          type: string
          example: Hi {{first_name}}, check out our new offer!
        contacts:
          type: array
          items:
            $ref: '#/components/schemas/SmsContactDto'
        groupId:
          type: number
          example: 123
      required:
        - name
        - template
    SmsContactDto:
      type: object
      properties: {}
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````