GetCallInfo operation (UM web service)
Exchange Server 2013
Last modified: July 01, 2013
Applies to: Exchange Online | Exchange Server 2007 | Exchange Server 2010 | Exchange Server 2013 | Office 365
The GetCallInfo operation returns the status of the outbound call that is specified by CallId (UM web service).
Description
The following example of a GetCallInfo request shows how to form a request to get information about a specified outbound call.
Code
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetCallInfo xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<CallId>MDlkZjllZGMtNGUyMy00NzA5LWJkYWYtN2JlMjBjYjBhZTU2QGRmLWV1bS0wMS5leGNoYW5nZS5jb3JwLm1pY3Jvc29mdC5jb20=</CallId>
</GetCallInfo>
</soap:Body>
</soap:Envelope>
Description
The following example of a GetCallInfo response shows a response to a GetCallInfo request.
Code
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCallInfoResponse xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<GetCallInfoResponse>
<CallState>Connected</CallState>
<EventCause>None</EventCause>
</GetCallInfoResponse>
</GetCallInfoResponse>
</soap:Body>
</soap:Envelope>
Show: