Calls
Get information about a call
You can retrieve information about an ongoing or completed call using a call ID. You can find the call ID of an ongoing call by viewing the response object from a callout request. You can find the call ID of a completed call by looking at your call logs in your Sinch Dashboard.
Note: You can only use this method for calls that terminate to PSTN or SIP networks from an In-app call.
get/calling/v1/calls/id/{callId}
Example response
{
"from": {
"type": "username",
"endpoint": "myUserName"
},
"to": {
"type": "username",
"endpoint": "myUserName"
},
"domain": "pstn",
"status": "ONGOING",
"result": "ANSWERED"
}