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

# Toggle standard texting campaign status



## OpenAPI

````yaml put /campaigns-texting/toggle-standard-campaign-status/{id}
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /campaigns-texting/toggle-standard-campaign-status/{id}:
    put:
      tags:
        - campaigns-texting
      summary: Toggle standard texting campaign status
      operationId: CampaignsTextingController_toggleStandardTextingCampaignStatus
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: number
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ToggleStandardTextingCampaignDto'
      responses:
        '200':
          description: Standard texting campaign status updated successfully
      security:
        - apiKey: []
components:
  schemas:
    ToggleStandardTextingCampaignDto:
      type: object
      properties:
        removeScheduledFollowups:
          type: boolean
          description: >-
            Whether to remove scheduled follow-ups when deactivating campaign.
            If false, follow-ups will be paused instead.
          default: false
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````