> ## 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 Text Pipeline Webhook

## Overview

The "Test Text Pipeline Webhook" endpoint provides a webhook for testing the text pipeline. By sending a POST request to the `/test_text_post_webhook` endpoint, users can verify the functionality and integration of their text pipeline, ensuring that it operates as expected and supports effective communication within campaigns.


## OpenAPI

````yaml POST /test_text_post_webhook
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /test_text_post_webhook:
    post:
      tags:
        - Campaign handling
      summary: Test Text Post Webhook
      operationId: test_text_post_webhook_test_text_post_webhook_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````