Incoming Missed
Each API request in TeleCMI platform includes App id and secret. Get your App id and secret in CHUB dashboard. After getting the app id and secret, make a POST request to the below base URL to retrieve the incoming missed call details.
Base URL
Send your POST method request with valid parameters, to the following base URL.
https://piopiy.telecmi.com/v1/missed
Required Parameters
These are the required POST method parameters with description
Parameter Name | Type | Description |
---|---|---|
*appid | number | Your app ID |
*token | string | Your app secret |
start_date | number | The from date and time in timestamp. By default the timestamp will be last 24 hours from current timestamp. |
end_date | number | The to date and time in timestamp, By default the timestamp will be current timestamp . |
page | number | The Number of page per 10 record. By default the page is 1. |
limit | number | The Number of record for request, By default the limit is 10. |
Note
The * marked parameter is mandatory.
Sample JSON Request
Below is the following sample JSON POST method request
{"appid": 1111113,"token": "xxxx-xxxx-xxxx-xxx","start_date": 1569911400000,"end_date": 1570167249853,"page": 2,"limit": 5}
Sample Response
If the provided information is valid, your web server will get a sample response from TeleCMI Platform as given below
{"total": 40,"cdr": [{"_id": "5d9609da3e23420b5f1fa27a","to": 4461111111,"time": 1570114006000,"from": 9100000000,"billedsec": 4,"rate": "0.49","name": "unknown"},{"_id": "5d9608353e23420b5f1fa267","to": 4461111111,"time": 1570113587000,"from": 9200000000,"billedsec": 3,"rate": "0.49","name": "unknown"},{"_id": "5d9607fa3e23420b5f1fa265","to": 4461111111,"time": 1570113525000,"from": 9300000000,"billedsec": 45,"rate": "0.49","name": "unknown"},{"_id": "5d9607f320837a1998da0b13","to": 4461111111,"time": 1570113521000,"from": 9400000000,"billedsec": 23,"rate": "0.49","name": "unknown"},{"_id": "5d9606db20837a1998da0b09","to": 4461111111,"time": 1570113390000,"from": 9500000000,"billedsec": 3,"rate": "0.49","name": "unknown"}],"code": 200}
Properties
These are the list of properties and its description
Property | Type | Description |
---|---|---|
total | number | The total count of call detail record(cdr) available |
cdr | JSON array | The list of total cdr in detail |
_id | string | A unique identifier of the call |
to | number | Your DID number |
time | number | Timestamp of the call |
from | number | The number of the call came from |
billedsec | number | The duration of call in seconds |
rate | string | The call cost of the call |
name | string | The name of the caller |
HTTP status codes
TeleCMI API platform represents the following status code to identity the errors.
Status code | Status code | Description |
---|---|---|
200 | OK | We received the request |
404 | Error | Invalid app id or secret, authentication failed |