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

# Get Twilio Message

## Overview

The "Get Twilio Message" endpoint allows users to retrieve messages from their Toingg account. By sending a POST request to the `/get_twilio_message/{apiKey}/{campId}` endpoint, users can access specific messages by specifying the API key and campaign ID. This functionality is crucial for reviewing and analyzing message content, ensuring that messages are easily accessible for quality assurance, training, or compliance purposes. The endpoint supports efficient retrieval of messages to enhance user experience and meet business requirements.


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

````