Cebod Telecom
  • Introduction
  • Customer Onboarding
  • FAQs (Frequently Asked Questions)
  • Cebod Telecom Web Portal
    • Dashboard
    • Activities
      • Call records
      • Messages
      • Active calls
      • SMS records
      • Faxes
    • Phone System
      • Phone Numbers
      • IVR (Auto Receptionist)
      • Users (Extensions)
        • Dynamic Caller ID
      • Manage Devices
      • Manage Groups
      • Manage Conferences
      • Postcall Actions
      • Webhooks
      • Time Conditions
      • Call Blocking
      • Call Center
        • Active Calls
        • Agents
        • Queue
        • Agents to queue
        • Agents Status
        • Agent Statistics
    • Tools / Settings
      • Manage Phone Lines
      • Add 911 Address
      • SMS
      • International Calling
      • Outbound Rates
      • Manage Recordings
        • AI Text-to-Speech Feature
      • Global Settings
        • Daily Spent Control
      • Voicemail Greetings
      • CNAM
    • My Account
      • Profile
      • Change Password:
      • Add Balance
      • Payment History
      • Vouchers
      • Invoices
      • Auto Refill
      • Logout
  • How To's
    • Set up BLF
    • Register a New Account
    • Setup Call Forwarding
      • Call Forwarding to an Extension
      • Call Forwarding Manually to a Cell Phone
    • Dial-By-Name Directory
    • Voicemail
      • Setting up the Voicemail Menu
      • Accessing Voicemail
      • Navigate through the Voicemail Menu
    • Provisioning
      • Cisco 8841
    • Setup Speed Dial
    • Cebod Telecom Free Applications
      • MS Windows Desktop Softphone
      • Mac Desktop Softphone
      • Apple IOS Mobile App
      • Android Mobile App
      • Desktop SMS/MMS Application
      • Click to Call Browser Extension
    • GS Wave
    • Setting Up Whisper Announcement
  • Enable Call Recording
  • Features
    • Manage Phone Features
      • Call Block
      • Call transfer
      • Call Queue
      • Call Center
      • Active Call Features
      • Ring Groups
      • Call Forward
      • Call Recording
      • Call Park
      • Paging
      • Voicemail
      • Call Monitoring
      • Hide Caller ID
    • Missed Call SMS
    • Missed Call Email Notification
    • 3-Way Calling
    • Conference Bridge
    • Setting up Time Condition
    • Setup Email FAX - Incoming
    • Sending eFax using email
  • API
    • Voice API
    • Quick Start
      • Identify Caller
      • Collect Response
    • didML reference doc
      • Voice API reference params
      • Voice API response
      • didML Verbs
        • <dial>
          • <client>
          • <conference>
          • <number>
          • <queue>
          • <sip>
        • <enqueue>
        • <fax>
        • <gather>
        • <hangup>
        • <pause>
        • <play>
        • <postcall>
        • <record>
        • <recordcall>
        • <redirect>
        • <reject>
        • <say>
        • <sms>
Powered by GitBook
On this page
  • Cebod Telecom Collects Response
  • Here is an example

Was this helpful?

  1. API
  2. didML reference doc

Voice API response

Our system expects a response from your application in didML format.

Cebod Telecom Collects Response

In the previous Step you saw how Cebod Telecom makes HTTP requests to your URL as soon as your phone number is called. Now as a result the server is trying to access the <didML> file which stores all the instructions that have been programmed by you. In other words system is figuring out what the next step is? Whether to greet the caller by name, or play music on hold or connect the call etc. Whatever is being stated in the file is the Response from your URL to the Request that was sent by Cebod Telecom.

‌<didML> collects the response from the URL and Cebod Telecom executes the instructions. Within the code any instruction that is passed within the <response> parameter is what <didML> looks for. With the use of various Verbs, you can create a complex dial plan to meet your unique needs.

Here is an example

If someone calls your number, Cebod Telecom will look up for the URL specified for that number and make a request. Web server will then send the instructions on what to do with that call. Say you want to play a Company Greeting, or Forward the call to a cell phone etc.

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Say>Please hold while we connect your call.</Say>
    <Dial>19499300366<dial/>
    <hangup/>
</Response>

As soon as Cebod Telecom gets access to the <didML> document, the phone system will convert the text to audio and play the messages to the caller. Once the message is played it will forward the call to another number as specified in the instructions. Please Note: Only one document can be served at one time, but you can link other documents based on input from the user. This way you can build a complex voice application. Like if Press 1 to do this, or Press 2 to do that else hang up.

Learn more about all the verbs you can use in the application.

PreviousVoice API reference paramsNextdidML Verbs

Last updated 3 years ago

Was this helpful?