Get CMIUUID

Each API request in PIOPIY platform includes app id and app secret. Get your App id and secret in PIOPIY dashboard. After getting the app id and secret, make a POST request to the below base URL to get the CMIUUID details.

Base URL

Send your POST method request with valid parameters, to the following base URL.

https://piopiy.telecmi.com/v1/piopiy/cmiuuid_cdr

Required Parameters

These are the required POST method parameters with description

Parameter NameTypeDescription
*appidnumberYour app ID
*secretstringYour app secret
*cmiuuidstringA unique identifier of each call
Note
The * marked parameter is mandatory.

Sample JSON Request

Below is the following sample JSON POST method request

{
"appid": 2222222,
"secret": "xxxx-xxxx-xxx-xxx-xxxx",
"cmiuuid": "fb449ebb-9ae6-4d33-87eb-fed995707dbc"
}

Sample Response

If the provided information is valid, your web server will get a sample response from TeleCMI Platform as given below

{
"cdr": {
"duration": 9,
"balance": "44.809024",
"rate": "1.500000",
"from": 440000000000,
"to": 440000000001,
"time": 1637124352000,
"leg": "a",
"direction": "outbound",
"status": "answered"
},
"code": 200
}

Properties

These are the list of properties and its description

PropertyTypeDescription
durationnumberThe total duration of this call in seconds
balancenumberThe total available account balance after this call
ratenumberThe billed call rate for this call
fromnumberYour default DID Number
tonumberThe number the call was made to
timenumberTimestamp of this call
legstringDefine the leg of the call either a or b
directionstringDirection of this call
statusstringStatus of this call

HTTP status codes

TeleCMI API platform represents the following status code to identity the errors.

Status codeStatus TypeDescription
200SuccessWe received the request
404ErrorInvalid app id or secret, authentication failed, Missing parameter, cmiuuid not found