Skip to main content

Incoming Missed Webhooks

To receive the incoming missed webhooks, you must complete the incoming webhooks setup. After completing the incoming webhooks setup, our TeleCMI platform will notify your web server POST method URL with JSON call detail record(CDR) when an incoming call missed.

Implementation

TeleCMI webhooks implementation in different languages.

from flask import Flask,request
app = Flask(__name__)


# Receive webhooks from TeleCMI platform when call receive or make
@app.route("/webhook/cdr",methods=['POST'])
def hello():
# Received JSON CDR from TeleCMI Platform
cdr = request.get_json()
print(cdr)

return "got it"



if __name__ == "__main__":
app.run(debug=True, port=5000)

To know more about testing webhooks for local development purposes, go to examples.

Sample CDR response

This is the sample JSON call detail record(CDR), where the TeleCMI platform will notify your web server POST method URL.

{ 
"appid": 1111113,
"type": "cdr",
"direction": "inbound",
"cmiuuid": "5f0fc753-064f-4c58-82d3-ce62f294fad3",
"status": "missed",
"from": 9110000000,
"time": 1570114018000,
"waitedsec": 119,
"team": "Support_1111113",
"voicemail": "true",
"voicename": "157009452516312171051293_919677551xxx.mp3"
}

The above sample JSON call detail record(CDR) consists of several properties. Each property has a description and take a look at it.

Properties

These are the list of properties and its description

PropertyTypeDescription
app_idnumberYour app id
typestringType of notification from TeleCMI platform it may be cdr or event
directionstringThe direction of this call it may be inbound or outbound
cmiuuidstringA unique identifier of this call
statusstringStatus of this call
fromnumberThe number the call came from
timenumberTimestamp of this call
waitedsecnumberThe duration of caller waited in seconds
teamstringName of the team where the call has waited
voicemailstringVoicemail is enabled
voicenamestringThe file name of the voicemail