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

## Overview

The "Add Plivio Message" endpoint allows users to integrate the Plivio messaging API into their Toingg account. By sending a POST request to the `/get_plivo_message/{apiKey}/{campId}` endpoint, users can add messaging capabilities, enabling them to send and receive messages through the Plivio platform. This functionality is crucial for enhancing communication within campaigns, ensuring that messaging is efficient and aligned with user needs. The endpoint supports seamless integration to improve messaging capabilities and align with evolving business requirements.

#### Example cURL Request

```bash theme={null}
curl -X POST \
  'https://api.toingg.com/api/v3/message/get_plivo_message/YOUR_API_KEY/YOUR_CAMP_ID' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml POST /get_plivo_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_plivo_message/{apiKey}/{campId}:
    post:
      tags:
        - Message handling
      summary: Get Plivo Message
      operationId: get_plivo_message_get_plivo_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

````