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

# Test Merssage Pipeline

## Overview

The "Test Message Pipeline" endpoint is designed for testing the message pipeline functionality. Users need to send a POST request to the `/get_twilio_message/{apiKey}/{campId}` endpoint, including their API key, campaign ID, phone number, and the text message. This process allows users to verify the messaging capabilities and ensure that the pipeline is functioning correctly, facilitating effective communication within campaigns.


## OpenAPI

````yaml POST /get_twilio_message/{apiKey}/{campId}
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_twilio_message/{apiKey}/{campId}:
    post:
      tags:
        - Message handling
      summary: Get Twilio Message
      operationId: get_twilio_message_get_twilio_message__apiKey___campId__post
      parameters:
        - name: apiKey
          in: path
          required: true
          schema:
            type: string
            title: Apikey
        - name: campId
          in: path
          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'
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

````