Dialgood
  1. DG
Dialgood
  • DG
    • Place Outbound Call
      POST
    • Message Announcement
      POST
    • Clear Outbound Call Queue
      DELETE
    • Get Agents
      GET
    • Get Call Recording
      GET
  1. DG

Place Outbound Call

Developing
POST
https://api.dialgood.com/external/v1/outbound

Request

Authorization
Add parameter in header
api_token
Example:
api_token: ********************
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/outbound' \
--header 'Accept: application/json' \
--header 'api_token: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "from": "string",
    "listId": "string",
    "agentId": "string",
    "contactList": [
        {
            "from": "string",
            "phone": "string"
        }
    ],
    "raw": {
        "dgName": "string",
        "dgHosted": "string",
        "_callSummaryRecipients": "string"
    },
    "customKey": "string",
    "speechSettings": {
        "synthesizer": {
            "vendor": "string",
            "language": "string",
            "voice": "string",
            "options": {}
        },
        "recognizer": {
            "vendor": "string",
            "language": "string",
            "model": "string"
        }
    }
}'
Response Response Example
{
    "status": {
        "contactListResponse": {
            "id": "0e485645-77ce-4bd2-9ce9-f36d7288296b_campaign_"
        },
        "campaignResponse": {
            "id": "ce8da1fb-00a7-4eb3-830d-88e8954a6ecb"
        },
        "status": {
            "status": true,
            "error": null,
            "message": "queued successfully"
        }
    }
}
Modified at 2025-10-15 04:01:28
Next
Message Announcement
Built with