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

# Text Pipeline Configuration

## Overview

The "Text Pipeline Configuration" endpoint is used to fetch the configurations added for a specific campaign's text pipeline. By sending a GET request to the `/text_pipeline_configuration` endpoint, users can retrieve the current settings and parameters that have been configured for the text pipeline. This functionality is essential for ensuring that the text pipeline is set up correctly and operates as intended, facilitating effective communication within campaigns.


## OpenAPI

````yaml GET /text_pipeline_configuration
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /text_pipeline_configuration:
    get:
      tags:
        - Campaign handling
      summary: Get Text Pipeline Configuration
      operationId: get_text_pipeline_configuration_text_pipeline_configuration_get
      parameters:
        - name: campId
          in: query
          required: true
          schema:
            type: string
            title: Campid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````