1. Call Control
Dialgood
  • DG
    • Call Control
      • Mute an active call
        POST
      • Unmute an active call
        POST
      • Clear Outbound Call Queue
        DELETE
      • Message Announcement
        POST
    • Live Status
      • Get transcript and transcript entries for a campaign
      • Get normalized call status and CDR details for a campaign
    • Voices
      • List available voices with optional filters and pagination
    • Calls
      • Place Outbound Call
      • Get Live Call Transcript
      • Get Call Transcript
      • Get Call Records
      • Get Call Recording
    • Agents
      • Get Agents
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • outbound body
    • ErrorResponse
    • ProxyControlRequestBody
    • ProxyControlResponse
    • LiveTranscriptEntry
    • LiveTranscriptResponse
    • CdrStatusResponse
    • VoiceLabels
    • Voice
    • VoicesPaginatedResponse
  1. Call Control

Message Announcement

POST
https://api.dialgood.com/external/v1/announce/{callId}
This endpoint allows the ability to announce a message by the agent while the call is live.

Request

Authorization
API Key
Add parameter in header
api_token
Example:
api_token: ********************
or
API Key
Add parameter in query
api_token
Example:
api_token: ********************
or
Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.dialgood.com/external/v1/announce/' \
--header 'Accept: application/json' \
--header 'api_token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "text": "hello world"
}'
Response Response Example
Sample Response
{
    "message": "Announcement sent successfully"
}
Modified at 2026-03-06 05:03:32
Previous
Clear Outbound Call Queue
Next
Get transcript and transcript entries for a campaign
Built with